GitHub

Radio Group

A set of checkable buttons where no more than one can be checked at a time

Installation

pnpm dlx shadcn@latest add https://shark-ui.vercel.app/r/radio-group.json

Usage

import { 
  RadioGroup, 
  RadioGroupItem 
} from "@/components/ui/radio-group";
<RadioGroup>
  <RadioGroupItem value="1">Option 1</RadioGroupItem>
  <RadioGroupItem value="2">Option 2</RadioGroupItem>
  <RadioGroupItem value="3">Option 3</RadioGroupItem>
</RadioGroup>