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 44 45 46 47 48 | 1x 3x 3x 3x | import { palette } from "@palette";
import { Link } from "react-router-dom";
// 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";
type DonationsHeaderProps = {
title: string;
backLink: string;
};
const DonationsHeader = ({ title, backLink }: DonationsHeaderProps) => {
const theme = useTheme();
const isDesktop = useMediaQuery(theme.breakpoints.up("sm"));
return (
<Box
mt={2}
mb="21px"
display="flex"
alignItems="center"
justifyContent="space-between"
>
<Box display="flex" alignItems="center">
<Link to="/merchant/fundraisers">
<IconButton sx={{ marginRight: "24px" }}>
<LeftChevronIcon />
</IconButton>
</Link>
<Text
variant="h4"
color={palette.neutral[600]}
fontSize={isDesktop ? "24px" : "20px"}
>
{title}
</Text>
</Box>
</Box>
);
};
export default DonationsHeader;
|