"use client" 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" import * as TablerIcons from "@tabler/icons-react"; export function NavProjects({ projects, }: { projects: { name: string; url: string; icon: TablerIcons.Icon; }[]; }) { const { isMobile } = useSidebar(); return ( Projects {projects.map((item) => ( {item.name} More View Project Share Project Delete Project ))} More ); }