ShortcutsSheet

import { ShortcutsSheet } from '@hanzo/ui/agents'

No examples yet.

Types

export interface ShortcutItem {
key: string
description: string
category: 'navigation' | 'actions' | 'tools' | 'workspace'
}
export interface ShortcutsSheetProps {
shortcuts?: ShortcutItem[]
onClose?: () => void
open?: boolean
className?: string
style?: React.CSSProperties
}

Exports

ShortcutsSheettype ShortcutItemtype ShortcutsSheetProps