() => { const commands = { Suggestions: [ { name: 'Open application', icon: 'https://reverseui.com/images/command-k/window.svg', }, { name: 'Show in finder', icon: 'https://reverseui.com/images/command-k/mac-finder.svg', }, { name: 'Add to favourites', icon: 'https://reverseui.com/images/command-k/star.svg', }, ], General: [ { name: 'Mark as complete', icon: 'https://reverseui.com/images/command-k/tick.svg', }, ], }; return <CommandK commands={commands} />; };
Prop | Type | Default |
---|---|---|
commands | [category: string]: {
name: string;
icon: JSX.Element | string;
}[] | {} |