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