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