{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "p-checkbox-3",
  "description": "Checkbox with description",
  "registryDependencies": [
    "@coss/checkbox",
    "@coss/label"
  ],
  "files": [
    {
      "path": "registry/default/particles/p-checkbox-3.tsx",
      "content": "import { useId } from \"react\";\nimport { Checkbox } from \"@/registry/default/ui/checkbox\";\nimport { Label } from \"@/registry/default/ui/label\";\n\nexport default function Particle() {\n  const id = useId();\n\n  return (\n    <div className=\"flex items-start gap-2\">\n      <Checkbox defaultChecked id={id} />\n      <div className=\"flex flex-col gap-1\">\n        <Label htmlFor={id}>Accept terms and conditions</Label>\n        <p className=\"text-muted-foreground text-xs\">\n          By clicking this checkbox, you agree to the terms and conditions.\n        </p>\n      </div>\n    </div>\n  );\n}\n",
      "type": "registry:block"
    }
  ],
  "categories": [
    "checkbox"
  ],
  "type": "registry:block"
}