ComponentsRadioGroupDocsApi ReferenceDefaultComfortableCompact Installation NpmManualNPM packages are currently unstable and may cause issues. Use it at your own risk.npmpnpmyarnbunnpm install @mijn-ui/react-radio-group Example Usage radio-group-example.tsximport { Label } from "@mijn-ui/react-label" import { RadioGroup, RadioGroupItem } from "@mijn-ui/react-radio-group" const RadioGroupExmaple = () => { return ( <RadioGroup defaultValue="comfortable"> <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> ) } export default RadioGroupExmapleEdit on GitHubPreviousProgressNextScrollArea