MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / ContextMenuContent

Function ContextMenuContent

src/components/ui/context-menu.tsx:96–112  ·  view source on GitHub ↗
({
  className,
  ...props
}: React.ComponentProps<typeof ContextMenuPrimitive.Content>)

Source from the content-addressed store, hash-verified

94}
95
96function 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
114function ContextMenuItem({
115 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected