Interface CmdkItem

interface CmdkItem {
    icon: LucideIcon;
    id: string;
    label: string;
    onClick?: MouseEventHandler<HTMLDivElement>;
}

Properties

Properties

icon: LucideIcon
id: string
label: string
onClick?: MouseEventHandler<HTMLDivElement>