{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "radio-group-03",
  "title": "Disabled Radio Group",
  "description": "A radio group component with disabled options",
  "registryDependencies": [
    "radio-group",
    "label"
  ],
  "files": [
    {
      "path": "src/components/customized/radio-group/radio-group-03.tsx",
      "content": "import { Label } from \"@/registry/ui/label\";\nimport { RadioGroup, RadioGroupItem } from \"@/registry/ui/radio-group\";\n\nexport default function RadioGroupDisabledDemo() {\n  return (\n    <div className=\"flex justify-center\">\n      <RadioGroup defaultValue=\"comfortable\" disabled>\n        <div className=\"flex items-center space-x-2\">\n          <RadioGroupItem id=\"r1-disabled\" value=\"default\" />\n          <Label htmlFor=\"r1-disabled\">Default</Label>\n        </div>\n        <div className=\"flex items-center space-x-2\">\n          <RadioGroupItem id=\"r2-disabled\" value=\"comfortable\" />\n          <Label htmlFor=\"r2-disabled\">Comfortable</Label>\n        </div>\n        <div className=\"flex items-center space-x-2\">\n          <RadioGroupItem id=\"r3-disabled\" value=\"compact\" />\n          <Label htmlFor=\"r3-disabled\">Compact</Label>\n        </div>\n      </RadioGroup>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}