GitHub

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.

Docs

Installation

npx solidui-cli@latest add radio-group

Usage

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