({
...props
}: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>)
| 107 | } |
| 108 | |
| 109 | function DropdownMenuRadioGroup({ |
| 110 | ...props |
| 111 | }: React.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>) { |
| 112 | return ( |
| 113 | <DropdownMenuPrimitive.RadioGroup |
| 114 | data-slot="dropdown-menu-radio-group" |
| 115 | {...props} |
| 116 | /> |
| 117 | ) |
| 118 | } |
| 119 | |
| 120 | function DropdownMenuRadioItem({ |
| 121 | className, |
nothing calls this directly
no outgoing calls
no test coverage detected