import Link from "next/link"; import styles from "./MenuItem.module.scss"; type Props = { href: URL | string; icon: any; text: string; }; export default function MenuItem({ href, icon, text }: Props) { return ( {icon} {text} ); }