"use client"; import { Folder, MoreHorizontal, Share, Trash2, type LucideIcon, } from "lucide-react"; import { SidebarGroup, SidebarGroupLabel, SidebarMenu, SidebarMenuAction, SidebarMenuButton, SidebarMenuItem, useSidebar, } from "@/components/ui/sidebar"; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, } from "@/components/ui/dropdown-menu"; 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 ); }