Function
RadioGroup
({
className,
...props
}: React.ComponentProps<typeof RadioGroupPrimitive.Root>)
Source from the content-addressed store, hash-verified
| 7 | import { cn } from "@/lib/utils" |
| 8 | |
| 9 | function RadioGroup({ |
| 10 | className, |
| 11 | ...props |
| 12 | }: React.ComponentProps<typeof RadioGroupPrimitive.Root>) { |
| 13 | return ( |
| 14 | <RadioGroupPrimitive.Root |
| 15 | data-slot="radio-group" |
| 16 | className={cn("grid gap-3", className)} |
| 17 | {...props} |
| 18 | /> |
| 19 | ) |
| 20 | } |
| 21 | |
| 22 | function RadioGroupItem({ |
| 23 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected