Radio Group

A set of checkable buttons where only one can be checked at a time.

Installation

npx ghost-ui-native add radio-group

Usage

import { RadioGroup, RadioGroupItem } from '@/components/ui/radio-group';
<RadioGroup value={value} onValueChange={setValue}>
  <RadioGroupItem value="default" label="Default" />
  <RadioGroupItem value="comfortable" label="Comfortable" />
</RadioGroup>