frontPanel/src/ui_kit/Header/NavMenuItem.tsx

33 lines
637 B
TypeScript
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 (
<Link href={href} underline="none" onClick={onClick}>
я есть навбар меню итем
<Typography
color={isActive ? theme.palette.brightPurple.main : undefined}
variant="body2"
sx={{
whiteSpace: "nowrap",
}}
>
{text}
</Typography>
</Link>
);
}