{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "radio-group-05",
  "title": "Radio Group with Custom Size",
  "description": "A radio group component with custom size options",
  "registryDependencies": [
    "radio-group",
    "label"
  ],
  "files": [
    {
      "path": "src/components/customized/radio-group/radio-group-05.tsx",
      "content": "import { Label } from \"@/registry/ui/label\";\nimport { RadioGroup, RadioGroupItem } from \"@/registry/ui/radio-group\";\n\nexport default function RadioGroupSizeDemo() {\n  return (\n    <div className=\"flex justify-center\">\n      <RadioGroup className=\"flex items-center gap-3\" defaultValue=\"default\">\n        <div className=\"flex items-center space-x-2\">\n          <RadioGroupItem id=\"size-default\" value=\"default\" />\n          <Label htmlFor=\"size-default\">Default</Label>\n        </div>\n        <div className=\"flex items-center space-x-2\">\n          <RadioGroupItem\n            className=\"h-5 w-5 [&_[data-slot=radio-group-indicator]_span]:size-2.5\"\n            id=\"size-medium\"\n            value=\"medium\"\n          />\n          <Label htmlFor=\"size-medium\">Medium</Label>\n        </div>\n        <div className=\"flex items-center space-x-2\">\n          <RadioGroupItem\n            className=\"h-6 w-6 [&_[data-slot=radio-group-indicator]_span]:size-3\"\n            id=\"size-large\"\n            value=\"big\"\n          />\n          <Label htmlFor=\"size-large\">Large</Label>\n        </div>\n      </RadioGroup>\n    </div>\n  );\n}\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}