import { ReactNode } from 'react'; export default function NavbarItem(props: { icon?: ReactNode; title: string; href: string; }) { return
{props.icon} {props.title}
}