import { NavigationMenu as NavigationMenuPrimitive } from "@base-ui/react/navigation-menu"; import { cva } from "class-variance-authority"; import { ComponentPropsWithoutRef } from "react"; import { cn } from "@/lib/utils"; import { ChevronDownIcon } from "lucide-react"; function NavigationMenu({ className, children, ...props }: ComponentPropsWithoutRef) { return ( {children} ); } function NavigationMenuList({ className, ...props }: ComponentPropsWithoutRef) { return ( ); } function NavigationMenuItem({ className, ...props }: ComponentPropsWithoutRef) { return ( ); } const navigationMenuTriggerStyle = cva( "bg-background hover:bg-muted focus:bg-muted data-open:hover:bg-muted data-open:focus:bg-muted data-open:bg-muted/50 focus-visible:ring-ring/30 data-popup-open:bg-muted/50 data-popup-open:hover:bg-muted rounded-md px-2.5 py-1.5 text-xs/relaxed font-medium transition-all focus-visible:ring-[2px] focus-visible:outline-1 disabled:opacity-50 group/navigation-menu-trigger inline-flex h-9 w-max items-center justify-center disabled:pointer-events-none outline-none", ); function NavigationMenuTrigger({ className, children, hideChevron, ...props }: NavigationMenuPrimitive.Trigger.Props & { hideChevron?: boolean }) { return ( {children} {!hideChevron && ( <> {" "} ); } function NavigationMenuContent({ className, ...props }: NavigationMenuPrimitive.Content.Props) { return ( ); } function NavigationMenuPositioner({ className, side = "bottom", sideOffset = 8, align = "start", alignOffset = 0, ...props }: NavigationMenuPrimitive.Positioner.Props) { return ( ); } function NavigationMenuLink({ className, ...props }: NavigationMenuPrimitive.Link.Props) { return ( ); } function NavigationMenuIndicator({ className, ...props }: ComponentPropsWithoutRef) { return (
); } export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, navigationMenuTriggerStyle, NavigationMenuPositioner, };