({ ...props }: MenuPrimitive.Root.Props)
| 8 | import { cn } from "@/lib/utils"; |
| 9 | |
| 10 | function DropdownMenu({ ...props }: MenuPrimitive.Root.Props) { |
| 11 | return <MenuPrimitive.Root data-slot="dropdown-menu" {...props} />; |
| 12 | } |
| 13 | |
| 14 | function DropdownMenuPortal({ ...props }: MenuPrimitive.Portal.Props) { |
| 15 | return <MenuPrimitive.Portal data-slot="dropdown-menu-portal" {...props} />; |
nothing calls this directly
no outgoing calls
no test coverage detected