mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-02 10:39:13 +00:00
42 lines
927 B
TypeScript
42 lines
927 B
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import { type LucideIcon } from "lucide-react"
|
|
|
|
import {
|
|
SidebarGroup,
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
SidebarMenuItem,
|
|
SidebarGroupLabel,
|
|
} from "@/components/ui/sidebar"
|
|
|
|
|
|
export function NavSecondary({
|
|
items,
|
|
...props
|
|
}: {
|
|
items: {
|
|
title: string
|
|
url: string
|
|
icon: LucideIcon
|
|
}[]
|
|
} & React.ComponentPropsWithoutRef<typeof SidebarGroup>) {
|
|
return (
|
|
<SidebarGroup {...props}>
|
|
<SidebarGroupLabel>SearchSpace</SidebarGroupLabel>
|
|
<SidebarMenu>
|
|
{items.map((item, index) => (
|
|
<SidebarMenuItem key={`${item.title}-${index}`}>
|
|
<SidebarMenuButton asChild size="sm">
|
|
<a href={item.url}>
|
|
<item.icon />
|
|
<span>{item.title}</span>
|
|
</a>
|
|
</SidebarMenuButton>
|
|
</SidebarMenuItem>
|
|
))}
|
|
</SidebarMenu>
|
|
</SidebarGroup>
|
|
)
|
|
}
|