/* Copyright (C) 2023-2026 QuantumNous This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . For commercial licensing, please contact support@quantumnous.com */ 'use client' import * as React from 'react' import { Menu as MenuPrimitive } from '@base-ui/react/menu' import { Menubar as MenubarPrimitive } from '@base-ui/react/menubar' import { Tick02Icon } from '@hugeicons/core-free-icons' import { HugeiconsIcon } from '@hugeicons/react' import { cn } from '@/lib/utils' import { DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, } from '@/components/ui/dropdown-menu' function Menubar({ className, ...props }: MenubarPrimitive.Props) { return ( ) } function MenubarMenu({ ...props }: React.ComponentProps) { return } function MenubarGroup({ ...props }: React.ComponentProps) { return } function MenubarPortal({ ...props }: React.ComponentProps) { return } function MenubarTrigger({ className, ...props }: React.ComponentProps) { return ( ) } function MenubarContent({ className, align = 'start', alignOffset = -4, sideOffset = 8, ...props }: React.ComponentProps) { return ( ) } function MenubarItem({ className, inset, variant = 'default', ...props }: React.ComponentProps) { return ( ) } function MenubarCheckboxItem({ className, children, checked, inset, ...props }: MenuPrimitive.CheckboxItem.Props & { inset?: boolean }) { return ( {children} ) } function MenubarRadioGroup({ ...props }: React.ComponentProps) { return } function MenubarRadioItem({ className, children, inset, ...props }: MenuPrimitive.RadioItem.Props & { inset?: boolean }) { return ( {children} ) } function MenubarLabel({ className, inset, ...props }: React.ComponentProps & { inset?: boolean }) { return ( ) } function MenubarSeparator({ className, ...props }: React.ComponentProps) { return ( ) } function MenubarShortcut({ className, ...props }: React.ComponentProps) { return ( ) } function MenubarSub({ ...props }: React.ComponentProps) { return } function MenubarSubTrigger({ className, inset, ...props }: React.ComponentProps & { inset?: boolean }) { return ( ) } function MenubarSubContent({ className, ...props }: React.ComponentProps) { return ( ) } export { Menubar, MenubarPortal, MenubarMenu, MenubarTrigger, MenubarContent, MenubarGroup, MenubarSeparator, MenubarLabel, MenubarItem, MenubarShortcut, MenubarCheckboxItem, MenubarRadioGroup, MenubarRadioItem, MenubarSub, MenubarSubTrigger, MenubarSubContent, }