"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 NavReports({ reports, }: { reports: { name: string; url: string; icon: TablerIcons.Icon; }[]; }) { const { isMobile } = useSidebar(); return ( Reports {reports.map((item) => ( {item.name} More View Reports Export Report Delete Report ))} More ); }