UNPKG

nice-ui

Version:

React design system, components, and utilities

11 lines (10 loc) 362 B
import * as React from 'react'; import type { CommandPaletteCmdItem } from '../types'; export interface CommandPaletteCmdProps extends CommandPaletteCmdItem { selected?: boolean; highlight?: string[]; disabled?: boolean; onSelect?: () => void; onClick?: () => void; } export declare const CommandPaletteCmd: React.FC<CommandPaletteCmdProps>;