({
...props
}: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>)
| 19 | } |
| 20 | |
| 21 | function DropdownMenuTrigger({ |
| 22 | ...props |
| 23 | }: React.ComponentProps<typeof DropdownMenuPrimitive.Trigger>) { |
| 24 | return ( |
| 25 | <DropdownMenuPrimitive.Trigger |
| 26 | data-slot="dropdown-menu-trigger" |
| 27 | {...props} |
| 28 | /> |
| 29 | ) |
| 30 | } |
| 31 | |
| 32 | function DropdownMenuContent({ |
| 33 | className, |
nothing calls this directly
no outgoing calls
no test coverage detected