{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "command-demo",
  "registryDependencies": [
    "https://taki-ui.com/r/command.json"
  ],
  "files": [
    {
      "path": "registry/new-york/examples/command-demo.tsx",
      "content": "import {\n  Calculator,\n  Calendar,\n  CreditCard,\n  Settings,\n  Smile,\n  User,\n} from \"lucide-react\"\n\nimport {\n  Command,\n  CommandEmpty,\n  CommandGroup,\n  CommandInput,\n  CommandItem,\n  CommandList,\n  CommandSeparator,\n  CommandShortcut,\n} from \"@/registry/new-york/ui/command\"\n\nexport default function CommandDemo() {\n  return (\n    <Command className=\"rounded-lg border shadow-md md:min-w-[450px]\">\n      <CommandInput placeholder=\"Type a command or search...\" />\n      <CommandList emptyMessage=\"No results found.\">\n        <CommandGroup heading=\"Suggestions\">\n          <CommandItem id=\"calendar\" textValue=\"Calendar\">\n            <Calendar />\n            <span>Calendar</span>\n          </CommandItem>\n          <CommandItem id=\"search-emoji\" textValue=\"Search Emoji\">\n            <Smile />\n            <span>Search Emoji</span>\n          </CommandItem>\n          <CommandItem id=\"calculator\" textValue=\"Calculator\" isDisabled>\n            <Calculator />\n            <span>Calculator</span>\n          </CommandItem>\n        </CommandGroup>\n        <CommandSeparator />\n        <CommandGroup heading=\"Settings\">\n          <CommandItem id=\"profile\" textValue=\"Profile\">\n            <User />\n            <span>Profile</span>\n            <CommandShortcut>⌘P</CommandShortcut>\n          </CommandItem>\n          <CommandItem id=\"billing\" textValue=\"Billing\">\n            <CreditCard />\n            <span>Billing</span>\n            <CommandShortcut>⌘B</CommandShortcut>\n          </CommandItem>\n          <CommandItem id=\"settings\" textValue=\"Settings\">\n            <Settings />\n            <span>Settings</span>\n            <CommandShortcut>⌘S</CommandShortcut>\n          </CommandItem>\n        </CommandGroup>\n      </CommandList>\n    </Command>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}