import { Link } from '@tanstack/solid-router'; import { Folder, Forward, type LucideIcon, MoreHorizontal, Trash2, } from 'lucide-solid'; import { type ComponentProps, For } from 'solid-js'; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuSeparator, DropdownMenuTrigger, } from '~/components/ui/dropdown-menu'; import { SidebarGroup, SidebarGroupLabel, SidebarMenu, SidebarMenuAction, SidebarMenuButton, SidebarMenuItem, } from '~/components/ui/sidebar'; export function NavProjects({ projects, }: { projects: { name: string; icon: LucideIcon; link: ComponentProps; }[]; }) { return ( Projects {(item) => ( {item.name} More View Project Share Project Delete Project )} More ); }