Radio Group
Glossy round radios that fill with gel and a white pip when selected.
install
npx shadcn@latest add @aqua/radio-groupUsage
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group"
<RadioGroup defaultValue="genie">
<label className="flex items-center gap-2">
<RadioGroupItem value="genie" /> Genie Effect
</label>
<label className="flex items-center gap-2">
<RadioGroupItem value="scale" /> Scale Effect
</label>
</RadioGroup>