22 lines
734 B
TypeScript
22 lines
734 B
TypeScript
import { Label } from '@workspace/ui/components/ui/label';
|
|
import { RadioGroup, RadioGroupItem } from '@/registry/radix/radio-group';
|
|
|
|
export function RadioGroupDemo() {
|
|
return (
|
|
<RadioGroup defaultValue="default">
|
|
<div className="flex items-center space-x-2">
|
|
<RadioGroupItem value="default" id="r1" />
|
|
<Label htmlFor="r1">Default</Label>
|
|
</div>
|
|
<div className="flex items-center space-x-2">
|
|
<RadioGroupItem value="comfortable" id="r2" />
|
|
<Label htmlFor="r2">Comfortable</Label>
|
|
</div>
|
|
<div className="flex items-center space-x-2">
|
|
<RadioGroupItem value="compact" id="r3" />
|
|
<Label htmlFor="r3">Compact</Label>
|
|
</div>
|
|
</RadioGroup>
|
|
);
|
|
}
|