front-hub/src/components/NavMenuItem.tsx
2022-11-24 22:22:30 +03:00

28 lines
621 B
TypeScript

import { Link, Typography, useTheme } from "@mui/material";
interface Props {
text: string;
isActive?: boolean;
}
export default function NavMenuItem({ text, isActive = false }: Props) {
const theme = useTheme();
return (
<Link
href="#"
underline="none"
>
<Typography
color={isActive ? theme.palette.brightPurple.main : undefined}
variant="body2"
sx={{
whiteSpace: "nowrap",
}}
>
{text}
</Typography>
</Link>
);
}