import { Folder, Forward, MoreHorizontal, Trash2, type LucideIcon, } from "lucide-react" import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, } from "@/components/ui/dropdown-menu" import { SidebarGroup, SidebarGroupLabel, SidebarMenu, SidebarMenuAction, SidebarMenuButton, SidebarMenuItem, useSidebar, } from "@/components/ui/sidebar" export function NavProjects({ projects, }: { projects: { name: string url: string icon: LucideIcon }[] }) { const { isMobile } = useSidebar() return ( Projects {projects.map((item) => ( {item.name} More View Project Share Project Delete Project ))} More ) }