{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "radio-group-demo",
  "title": "Radio group Demo",
  "description": "Usage example for the ai2 radio-group component.",
  "registryDependencies": [
    "@ai2/radio-group",
    "@ai2/label"
  ],
  "files": [
    {
      "path": "registry/ai2/examples/radio-group-demo.tsx",
      "content": "import { Label } from \"@/registry/ai2/ui/label\"\nimport { RadioGroup, RadioGroupItem } from \"@/registry/ai2/ui/radio-group\"\n\nexport default function RadioGroupDemo() {\n  return (\n    <RadioGroup defaultValue=\"weekly\">\n      <Label>\n        <RadioGroupItem value=\"realtime\" tone=\"brand\" /> Realtime alerts\n      </Label>\n      <Label>\n        <RadioGroupItem value=\"weekly\" tone=\"brand\" /> Weekly digest\n      </Label>\n    </RadioGroup>\n  )\n}\n",
      "type": "registry:example"
    }
  ],
  "type": "registry:example"
}