import Link from "next/link" import type { LucideIcon } from "lucide-react" import type React from "react" interface NavItemProps { href: string icon: LucideIcon children: React.ReactNode onClick?: () => void } export const NavItem: React.FC = ({ href, icon: Icon, children, onClick }) => ( {children} )