{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "files": [
    {
      "content": "import {\n  CheckboxIndicator,\n  CheckboxProvider,\n  CheckboxRoot,\n} from \"~/registry/ui/checkbox/checkbox\";\nimport { Input } from \"~/registry/ui/input\";\nimport { Label } from \"~/registry/ui/label/label\";\nimport { Textarea } from \"~/registry/ui/textarea\";\n\nexport function LabelDemo() {\n  return (\n    <div className=\"grid w-full max-w-sm gap-6\">\n      <div className=\"flex items-center gap-3\">\n        <CheckboxProvider>\n          <CheckboxRoot>\n            <CheckboxIndicator />\n          </CheckboxRoot>\n          Accept terms and conditions\n        </CheckboxProvider>\n      </div>\n      <div className=\"grid gap-3\">\n        <Label htmlFor=\"label-demo-username\">Username</Label>\n        <Input id=\"label-demo-username\" placeholder=\"Username\" />\n      </div>\n      <div className=\"group grid gap-3\" data-disabled={true}>\n        <Label htmlFor=\"label-demo-disabled\">Disabled</Label>\n        <Input disabled id=\"label-demo-disabled\" placeholder=\"Disabled\" />\n      </div>\n      <div className=\"grid gap-3\">\n        <Label htmlFor=\"label-demo-message\">Message</Label>\n        <Textarea id=\"label-demo-message\" placeholder=\"Message\" />\n      </div>\n    </div>\n  );\n}\n",
      "path": "src/registry/examples/label/label-demo.tsx",
      "type": "registry:example"
    }
  ],
  "name": "label-demo",
  "registryDependencies": [
    "@kanpeki/label"
  ],
  "type": "registry:example"
}