Index 01Component Library
Index
Builder

Radio Group

A single choice among a small set of options.

Variants

Single choice

Usage

Install
bun add @phutsakorn/ui
Usage
import { RadioGroup } from '@phutsakorn/ui'

<RadioGroup
  label="Employment Type"
  name="employment"
  value={value}
  onChange={setValue}
  options={[
    { value: 'full-time', label: 'Full Time' },
    { value: 'part-time', label: 'Part Time' },
  ]}
/>