Radio Group

A set of checkable buttons—known as radio buttons—where no more than one of the buttons can be checked at a time.

Example

Usage

import { RadioGroup, RadioGroupItem } from "~/components/ui/radio-group"
<RadioGroup>
  <For each={["Apple", "Orange", "Watermelon"]}>
    {(fruit) => (
      <RadioGroupItem value={fruit}>
        <Label>{fruit}</Label>
      </RadioGroupItem>
    )}
  </For>
</RadioGroup>