{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "label-demo",
  "title": "Label Demo",
  "description": "Usage example for the ai2 label component.",
  "registryDependencies": [
    "@ai2/label",
    "@ai2/checkbox"
  ],
  "files": [
    {
      "path": "registry/ai2/examples/label-demo.tsx",
      "content": "import { Checkbox } from \"@/registry/ai2/ui/checkbox\"\nimport { Label } from \"@/registry/ai2/ui/label\"\n\nexport default function LabelDemo() {\n  return (\n    <div className=\"flex flex-col gap-3\">\n      <Label>\n        <Checkbox tone=\"brand\" defaultChecked /> Accept terms and conditions\n      </Label>\n      <Label size=\"sm\">\n        <Checkbox size=\"sm\" tone=\"brand\" defaultChecked /> Remember this device\n      </Label>\n    </div>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}