feat(CommandPalette): implement component

This commit is contained in:
Benjamin Canac
2022-07-17 12:37:16 +02:00
parent 1a8ca6fb38
commit 18dceb7445
6 changed files with 215 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
export interface Command {
disabled?: boolean
icon?: string
iconColor?: string
iconClass?: string
avatar?: string
label: string
group?: string
}
export interface Group {
key: string
label: string
commands: Command[]
}