| 94 | } |
| 95 | |
| 96 | function ContextMenuContent({ |
| 97 | className, |
| 98 | ...props |
| 99 | }: React.ComponentProps<typeof ContextMenuPrimitive.Content>) { |
| 100 | return ( |
| 101 | <ContextMenuPrimitive.Portal> |
| 102 | <ContextMenuPrimitive.Content |
| 103 | data-slot="context-menu-content" |
| 104 | className={cn( |
| 105 | "bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 max-h-(--radix-context-menu-content-available-height) min-w-[8rem] origin-(--radix-context-menu-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border p-1 shadow-md", |
| 106 | className |
| 107 | )} |
| 108 | {...props} |
| 109 | /> |
| 110 | </ContextMenuPrimitive.Portal> |
| 111 | ) |
| 112 | } |
| 113 | |
| 114 | function ContextMenuItem({ |
| 115 | className, |