{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "checkbox", "type": "registry:ui", "title": "Checkbox", "description": "A checkbox component.", "dependencies": ["@radix-ui/react-checkbox"], "files": [ { "path": "registry/niv/ui/checkbox.tsx", "content": "'use client';\n\nimport { Indicator, Root } from '@radix-ui/react-checkbox';\nimport { CheckIcon } from 'lucide-react';\nimport { cn } from '@/lib/classnames';\nimport type * as React from 'react';\n\nconst Checkbox = ({\n className,\n ...props\n}: React.ComponentProps) => {\n return (\n \n \n \n \n \n );\n};\n\nexport { Checkbox };\n", "type": "registry:ui" } ] }