Components
Radio Group

Radio Group

Version - 0.0.6

Installation

npm install @volta/radio-group

Usage

import { RadioGroup, RadioGroupItem } from '@volta/radio-group';
import { Label } from '@volta/label';
<RadioGroup defaultValue="comfortable">
  <div className="flex items-center space-x-2">
    <RadioGroupItem value="default" id="r1" />
    <Label htmlFor="r1">Default</Label>
  </div>
  <div className="flex items-center space-x-2">
    <RadioGroupItem value="comfortable" id="r2" />
    <Label htmlFor="r2">Comfortable</Label>
  </div>
  <div className="flex items-center space-x-2">
    <RadioGroupItem value="compact" id="r3" />
    <Label htmlFor="r3">Compact</Label>
  </div>
  <div className="flex items-center space-x-2">
    <RadioGroupItem value="disabled" id="r4" disabled />
    <Label htmlFor="r4">Disabled</Label>
  </div>
</RadioGroup>