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