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