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