Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | // mui
import { Box, useMediaQuery } from "@mui/material";
import { useTheme } from "@mui/material/styles";
// components
import { Text } from "@common/Text";
import { IconButton } from "@common/IconButton";
// assets
import { LeftChevronIcon } from "@assets/icons";
import { namespaces } from "localization/resources/i18n.constants";
import { useTranslation } from "react-i18next";
import { Link } from "react-router-dom";
const Header = ({title}: { title?: string }) => {
const theme = useTheme();
const isDesktop = useMediaQuery(theme.breakpoints.up("sm"));
const { t } = useTranslation(namespaces.pages.sweepstakes);
return (
<Box
mt={2}
mb="21px"
display="flex"
alignItems="center"
justifyContent="space-between"
>
<Box display="flex" alignItems="center">
<Link to="/merchant/sweepstakes">
<IconButton sx={{ marginRight: "24px" }}>
<LeftChevronIcon />
</IconButton>
</Link>
<Text
variant={isDesktop ? "h4" : "h5"}
color={theme.palette.neutral[600]}
>
{title}
</Text>
</Box>
</Box>
);
};
export default Header;
|