MCPcopy
hub / github.com/TheOrcDev/8bitcn-ui / NavigationMenuContent

Function NavigationMenuContent

components/ui/8bit/navigation-menu.tsx:105–120  ·  view source on GitHub ↗
({
  className,
  font,
  children,
  ...props
}: React.ComponentProps<typeof ShadcnNavigationMenuContent> &
  FontVariantProps)

Source from the content-addressed store, hash-verified

103}
104
105function NavigationMenuContent({
106 className,
107 font,
108 children,
109 ...props
110}: React.ComponentProps<typeof ShadcnNavigationMenuContent> &
111 FontVariantProps) {
112 return (
113 <ShadcnNavigationMenuContent
114 className={cn(getFontClassName(font), className)}
115 {...props}
116 >
117 {children}
118 </ShadcnNavigationMenuContent>
119 );
120}
121
122function NavigationMenuViewport({
123 className,

Callers

nothing calls this directly

Calls 2

cnFunction · 0.90
getFontClassNameFunction · 0.85

Tested by

no test coverage detected