46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
import type { Icon } from '@tabler/icons-react';
|
|
|
|
import { Link } from '@tanstack/react-router';
|
|
import {
|
|
SidebarGroup,
|
|
SidebarGroupContent,
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
} from '@/components/ui/sidebar';
|
|
|
|
export function NavMain({
|
|
items,
|
|
}: {
|
|
items: {
|
|
title: string;
|
|
url: string;
|
|
icon?: Icon;
|
|
}[];
|
|
}) {
|
|
return (
|
|
<SidebarGroup>
|
|
<SidebarGroupContent className="flex flex-col gap-2">
|
|
<SidebarMenu>
|
|
{items.map(item => (
|
|
<SidebarMenuItem key={item.title}>
|
|
<Link
|
|
to={item.url}
|
|
>
|
|
{({ isActive }) => {
|
|
return (
|
|
<SidebarMenuButton isActive={isActive} tooltip={item.title}>
|
|
{item.icon && <item.icon />}
|
|
<span>{item.title}</span>
|
|
</SidebarMenuButton>
|
|
);
|
|
}}
|
|
</Link>
|
|
</SidebarMenuItem>
|
|
))}
|
|
</SidebarMenu>
|
|
</SidebarGroupContent>
|
|
</SidebarGroup>
|
|
);
|
|
}
|