{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "radio-group-example",
  "title": "Radio Group",
  "description": "radio-group-example",
  "registryDependencies": [
    "https://intentui.com/r/field",
    "https://intentui.com/r/radio"
  ],
  "files": [
    {
      "path": "src/components/examples/forms/radio-group/radio-group-example.tsx",
      "content": "'use client'\n\nimport { Description, Label } from '@/components/ui/field'\nimport { Radio, RadioField, RadioGroup } from '@/components/ui/radio'\n\nexport default function RadioGroupDemo() {\n  return (\n    <RadioGroup name=\"billing\">\n      <Label>Billing Cycle</Label>\n      <Description>Select how often you'd like to be billed</Description>\n\n      <RadioField value=\"monthly\">\n        <Radio>Monthly</Radio>\n        <Description>Billed every month</Description>\n      </RadioField>\n      <RadioField value=\"quarterly\">\n        <Radio>Quarterly</Radio>\n        <Description>Billed every 3 months</Description>\n      </RadioField>\n      <RadioField value=\"yearly\">\n        <Radio>Yearly</Radio>\n        <Description>Billed once per year with a discount</Description>\n      </RadioField>\n    </RadioGroup>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/radio-group-example/page.tsx"
    }
  ],
  "type": "registry:page"
}