Radio Group

Glossy round radios that fill with gel and a white pip when selected.

installnpx shadcn@latest add @aqua/radio-group

Usage

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>