import { Link, Typography, useTheme } from "@mui/material";
interface Props {
text: string;
isActive?: boolean;
onClick?: () => void;
href?: string
}
export default function NavMenuItem({ href, onClick, text, isActive = false }: Props) {
const theme = useTheme();
return (
{text}
);
}