| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | 
							- 'use client'
 - 
 - import { useSelectedLayoutSegment } from 'next/navigation'
 - import classNames from 'classnames'
 - import Link from 'next/link'
 - 
 - export type NavIcon = React.ComponentType<
 - React.PropsWithoutRef<React.ComponentProps<'svg'>> & {
 -   title?: string | undefined
 -   titleId?: string | undefined
 - }
 - >
 - 
 - export type NavLinkProps = {
 -   name: string
 -   href: string
 -   iconMap: {
 -     selected: NavIcon
 -     normal: NavIcon
 -   }
 - }
 - 
 - export default function NavLink({
 -   name,
 -   href,
 -   iconMap,
 - }: NavLinkProps) {
 -   const segment = useSelectedLayoutSegment()
 -   const isActive = href.toLowerCase().split('/')?.pop() === segment?.toLowerCase()
 -   const NavIcon = isActive ? iconMap.selected : iconMap.normal
 - 
 -   return (
 -     <Link
 -       key={name}
 -       href={href}
 -       className={classNames(
 -         isActive ? 'bg-primary-50 text-primary-600 font-semibold' : 'text-gray-700 hover:bg-gray-100 hover:text-gray-700',
 -         'group flex items-center rounded-md px-2 py-2 text-sm font-normal',
 -       )}
 -     >
 -       <NavIcon
 -         className={classNames(
 -           'mr-2 h-4 w-4 flex-shrink-0',
 -           isActive ? 'text-primary-600' : 'text-gray-700',
 -         )}
 -         aria-hidden="true"
 -       />
 -       {name}
 -     </Link>
 -   )
 - }
 
 
  |