{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "checkbox", "title": "Checkbox", "description": "A checkbox component built on Radix UI.", "dependencies": [ "lucide-react", "radix-ui" ], "files": [ { "path": "registry/default/ui/checkbox.tsx", "content": "'use client';\n\nimport { Checkbox as CheckboxPrimitive } from 'radix-ui';\nimport { CheckIcon } from 'lucide-react';\nimport * as React from 'react';\n\nimport { cn } from '@/lib/utils';\n\nfunction Checkbox({\n className,\n ...props\n}: React.ComponentProps) {\n return (\n \n \n \n \n \n );\n}\n\nexport { Checkbox };\n", "type": "registry:ui" } ], "type": "registry:ui" }