{ "name": "command-button", "type": "registry:component", "dependencies": [ "lucide-react" ], "registryDependencies": [ "button" ], "files": [ { "type": "registry:component", "content": "import { Command } from \"lucide-react\";\nimport { Button } from \"@/components/ui/button\";\nimport { cn } from \"@/lib/utils\";\n\n/**\n * @author: @dorianbaffier\n * @description: Command Button\n * @version: 1.0.0\n * @date: 2025-06-26\n * @license: MIT\n * @website: https://kokonutui.com\n * @github: https://github.com/kokonut-labs/kokonutui\n */\n\nexport default function CommandButton({\n className,\n children,\n ...props\n}: React.ButtonHTMLAttributes & {\n children?: React.ReactNode;\n}) {\n return (\n \n \n \n {children || \"CMD + K\"}\n \n \n \n );\n}\n", "path": "/components/kokonutui/command-button.tsx", "target": "components/kokonutui/command-button.tsx" } ] }