Radio Group

Radio group primitive with custom selected state icon.

Installation

npx shadcn@latest add @gameone/radio-group

Registry dependencies: gameone-utils, fontawesome-kit

Usage

Import
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group"
Example
<RadioGroup defaultValue="option-1">
  <div className="flex items-center gap-2">
    <RadioGroupItem value="option-1" id="option-1" />
    <Label htmlFor="option-1">Option 1</Label>
  </div>
  <div className="flex items-center gap-2">
    <RadioGroupItem value="option-2" id="option-2" />
    <Label htmlFor="option-2">Option 2</Label>
  </div>
</RadioGroup>