{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "checkbox-group-demo",
  "type": "registry:example",
  "title": "Checkbox Group Demo",
  "registryDependencies": [
    "https://seamui.dev/r/checkbox-group.json",
    "https://seamui.dev/r/label.json"
  ],
  "files": [
    {
      "path": "registry/seam/examples/checkbox-group-demo.tsx",
      "content": "import { Checkbox } from \"@/registry/seam/ui/checkbox\"\nimport { CheckboxGroup } from \"@/registry/seam/ui/checkbox-group\"\nimport { Label } from \"@/registry/seam/ui/label\"\n\nexport default function CheckboxGroupDemo() {\n  return (\n    <CheckboxGroup defaultValue={[\"replies\"]} aria-label=\"Notifications\">\n      <Label>\n        <Checkbox name=\"replies\" />\n        Replies to my threads\n      </Label>\n      <Label>\n        <Checkbox name=\"mentions\" />\n        Direct mentions\n      </Label>\n      <Label>\n        <Checkbox name=\"digest\" />\n        Weekly digest\n      </Label>\n    </CheckboxGroup>\n  )\n}\n",
      "type": "registry:example"
    }
  ]
}