({
className,
font,
children,
...props
}: React.ComponentProps<typeof ShadcnNavigationMenuContent> &
FontVariantProps)
| 103 | } |
| 104 | |
| 105 | function 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 | |
| 122 | function NavigationMenuViewport({ |
| 123 | className, |
nothing calls this directly
no test coverage detected