pnpm dlx shadcn@latest add @saturation/radio-groupimport {
RadioGroup,
RadioGroupItem,
} from "@/components/ui/radio-group"<RadioGroup defaultValue="option-one">
<RadioGroupItem value="option-one" id="option-one" />
<RadioGroupItem value="option-two" id="option-two" />
</RadioGroup>| Prop | Type | Default | Description |
|---|---|---|---|
value | string | — | The controlled value. |
defaultValue | string | — | The default value. |
onValueChange | (value: string) => void | — | Event handler for value changes. |
On This Page