adminFront/src/pages/dashboard/Header/index.tsx
2023-01-08 01:58:14 +03:00

66 lines
1.6 KiB
TypeScript
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 * as React from "react";
import { Box, Typography } from "@mui/material";
import theme from "../../../theme";
import ExitToAppOutlinedIcon from '@mui/icons-material/ExitToAppOutlined';
import Logo from "../../Logo";
const Header: React.FC = () => {
return (
<React.Fragment>
<Box sx={{
backgroundColor: theme.palette.menu.main,
width: "100%",
minHeight: "85px",
display: "flex",
justifyContent: "space-between",
flexWrap: 'wrap',
paddingLeft: '5px'
}}>
<Box sx={{
width: "150px",
display: "flex",
justifyContent: "right",
alignItems: "center"
}}>
<Logo />
</Box>
<Box sx={{
display: "flex"
}}>
<Typography
variant="h6"
sx={{
maxWidth: "230px",
display: "flex",
flexDirection: "column",
justifyContent: "center",
alignItems: "center",
fontWeight: "normal"
}}
>
Добро пожаловать, Администратор сервиса
</Typography>
<Box sx={{
display: "flex",
flexDirection: "column",
justifyContent: "center",
alignItems: "center",
cursor: "pointer",
padding: '0 31px'
}}>
<ExitToAppOutlinedIcon sx={{
color: theme.palette.golden.main,
transform: "scale(1.3)"
}} />
</Box>
</Box>
</Box>
</React.Fragment>
);
}
export default Header;