{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "radio-group-09",
  "title": "Radio Group with Cards (Style 3)",
  "description": "A radio group component with card-style options (style 3)",
  "registryDependencies": [
    "radio-group",
    "card",
    "label"
  ],
  "files": [
    {
      "path": "src/components/customized/radio-group/radio-group-09.tsx",
      "content": "import {\n  Card,\n  CardContent,\n  CardDescription,\n  CardHeader,\n  CardTitle,\n} from \"@/registry/ui/card\";\nimport { Label } from \"@/registry/ui/label\";\nimport { RadioGroup, RadioGroupItem } from \"@/registry/ui/radio-group\";\n\nconst RadioCardsDemo = () => {\n  return (\n    <Card className=\"max-w-xs shadow-xs\">\n      <CardHeader>\n        <CardTitle>Plan Options</CardTitle>\n        <CardDescription>\n          Select your preferred subscription plan\n        </CardDescription>\n      </CardHeader>\n      <CardContent>\n        <RadioGroup defaultValue=\"standard\">\n          <div className=\"mb-4 flex items-start space-x-2\">\n            <RadioGroupItem id=\"free\" value=\"free\" />\n            <Label className=\"flex flex-col items-start\" htmlFor=\"free\">\n              <span className=\"font-semibold\">Free</span>\n              <span className=\"text-muted-foreground text-sm\">\n                Basic features, no cost\n              </span>\n            </Label>\n          </div>\n          <div className=\"mb-4 flex items-start space-x-2\">\n            <RadioGroupItem id=\"standard\" value=\"standard\" />\n            <Label className=\"flex flex-col items-start\" htmlFor=\"standard\">\n              <span className=\"font-semibold\">Standard</span>\n              <span className=\"text-muted-foreground text-sm\">\n                Advanced features, $9.99/month\n              </span>\n            </Label>\n          </div>\n          <div className=\"flex items-start space-x-2\">\n            <RadioGroupItem id=\"premium\" value=\"premium\" />\n            <Label className=\"flex flex-col items-start\" htmlFor=\"premium\">\n              <span className=\"font-semibold\">Premium</span>\n              <span className=\"text-muted-foreground text-sm\">\n                All features, $19.99/month\n              </span>\n            </Label>\n          </div>\n        </RadioGroup>\n      </CardContent>\n    </Card>\n  );\n};\n\nexport default RadioCardsDemo;\n",
      "type": "registry:component"
    }
  ],
  "type": "registry:component"
}