import * as React from "react"; import { type LucideIcon } from "lucide-react"; import { SidebarGroup, SidebarGroupContent, SidebarMenu, SidebarMenuButton, SidebarMenuItem, } from "@/components/ui/sidebar"; import { Link } from "@inertiajs/react"; export function NavSecondary({ items, ...props }: { items: { title: string; url: string; icon: LucideIcon; }[]; } & React.ComponentPropsWithoutRef) { return ( {items.map((item) => ( {item.title} ))} ); }