A set of checkable buttons—known as radio buttons—where no more than one of the buttons can be checked at a time.
import { Label } from "https://deno.land/x/testing_shadcn_ui_for_deno@0.1.2/components/label.tsx"
import { RadioGroup, RadioGroupItem } from "https://deno.land/x/testing_shadcn_ui_for_deno@0.1.2/components/radio-group.tsx"
export function RadioGroupDemo() {
return (
<RadioGroup defaultValue="comfortable">
<div class="flex items-center space-x-2">
<RadioGroupItem value="default" id="r1" />
<Label htmlFor="r1">Default</Label>
</div>
<div class="flex items-center space-x-2">
<RadioGroupItem value="comfortable" id="r2" />
<Label htmlFor="r2">Comfortable</Label>
</div>
<div class="flex items-center space-x-2">
<RadioGroupItem value="compact" id="r3" />
<Label htmlFor="r3">Compact</Label>
</div>
<div class="flex items-center space-x-2">
<RadioGroupItem value="expandable" id="r4" disabled />
<Label htmlFor="r4">Expandable</Label>
</div>
</RadioGroup>
)
}