({
className,
font,
...props
}: React.ComponentProps<typeof ShadcnNavigationMenuItem> & FontVariantProps)
| 76 | } |
| 77 | |
| 78 | function NavigationMenuItem({ |
| 79 | className, |
| 80 | font, |
| 81 | ...props |
| 82 | }: React.ComponentProps<typeof ShadcnNavigationMenuItem> & FontVariantProps) { |
| 83 | return ( |
| 84 | <ShadcnNavigationMenuItem |
| 85 | className={cn("static", getFontClassName(font), className)} |
| 86 | {...props} |
| 87 | /> |
| 88 | ); |
| 89 | } |
| 90 | |
| 91 | function NavigationMenuTrigger({ |
| 92 | className, |
nothing calls this directly
no test coverage detected