Docs
ラジオグループ
ラジオグループ
チェック可能なボタンのセットで、ラジオボタンと呼ばれ、一度にチェックできるボタンは 1 つだけです。
インストール
npx shadcn-ui@latest add radio-group
使用法
import { Label } from "@/components/ui/label"
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group"
<RadioGroup defaultValue="option-one">
<div className="flex items-center space-x-2">
<RadioGroupItem value="option-one" id="option-one" />
<Label htmlFor="option-one">オプション 1</Label>
</div>
<div className="flex items-center space-x-2">
<RadioGroupItem value="option-two" id="option-two" />
<Label htmlFor="option-two">オプション 2</Label>
</div>
</RadioGroup>