GemCoder / utils /shadcn-docs /radio-group.tsx
osanseviero's picture
Upload 54 files
63c7991 verified
raw
history blame contribute delete
599 Bytes
export const name = "RadioGroup";
export const importDocs = `
import { Label } from "/components/ui/label"
import { RadioGroup, RadioGroupItem } from "/components/ui/radio-group"
`;
export const usageDocs = `
<RadioGroup defaultValue="option-one">
<div className="flex items-center space-x-2">
<RadioGroupItem value="option-one" id="option-one" />
<Label htmlFor="option-one">Option One</Label>
</div>
<div className="flex items-center space-x-2">
<RadioGroupItem value="option-two" id="option-two" />
<Label htmlFor="option-two">Option Two</Label>
</div>
</RadioGroup>
`;