Fortura/apps/www/public/r/radix-checkbox-demo.json
2025-08-20 04:12:49 -06:00

19 lines
874 B
JSON

{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "radix-checkbox-demo",
"type": "registry:ui",
"title": "Radix Checkbox Demo",
"description": "Demo showing an animated radix checkbox.",
"registryDependencies": [
"https://animate-ui.com/r/radix-checkbox",
"label"
],
"files": [
{
"path": "registry/demo/radix/checkbox/index.tsx",
"content": "import { Label } from '@/components/ui/label';\nimport { Checkbox } from '@/components/animate-ui/radix/checkbox';\n\nexport const RadixCheckboxDemo = () => {\n return (\n <div className=\"flex items-center space-x-2\">\n <Checkbox defaultChecked id=\"terms\" />\n <Label htmlFor=\"terms\">Accept terms and conditions</Label>\n </div>\n );\n};\n",
"type": "registry:ui",
"target": "components/animate-ui/demo/radix/checkbox.tsx"
}
]
}