{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "checkbox", "title": "Checkbox", "description": "Treasury-styled checkbox", "dependencies": [ "lucide-react", "radix-ui" ], "registryDependencies": [ "utils" ], "files": [ { "path": "registry/ui/checkbox.tsx", "content": "\"use client\"\n\nimport * as React from \"react\"\nimport { Checkbox as CheckboxPrimitive } from \"radix-ui\"\n\nimport { cn } from \"@/lib/utils\"\nimport { CheckIcon } from \"lucide-react\"\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" }