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