Radio
Pick a single option from a group.
Radio group
Pick a single option from a group.
import { Radio, RadioGroup } from "@/components/ui";
<RadioGroup defaultValue="standard" aria-label="Plan">
<label className="flex items-center gap-3 text-sm">
<Radio value="standard" />
Standard
</label>
<label className="flex items-center gap-3 text-sm">
<Radio value="pro" />
Pro
</label>
</RadioGroup>