2023-12-16 14:55:56 +00:00
|
|
|
import { Box } from "@mui/material";
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
color: string;
|
2024-05-31 16:41:18 +00:00
|
|
|
backgroundColor: string;
|
2023-12-16 14:55:56 +00:00
|
|
|
}
|
|
|
|
|
2024-03-14 16:09:40 +00:00
|
|
|
export default function EmailIcon({ color, backgroundColor }: Props) {
|
2023-12-16 14:55:56 +00:00
|
|
|
return (
|
|
|
|
<Box
|
|
|
|
sx={{
|
|
|
|
display: "flex",
|
|
|
|
alignItems: "center",
|
|
|
|
justifyContent: "center",
|
2024-03-14 16:09:40 +00:00
|
|
|
height: "58px",
|
2024-04-30 18:57:25 +00:00
|
|
|
width: "45px",
|
2024-05-31 16:41:18 +00:00
|
|
|
backgroundColor: { backgroundColor },
|
2024-03-14 16:09:40 +00:00
|
|
|
borderBottomLeftRadius: "12px",
|
|
|
|
borderTopLeftRadius: "12px",
|
2023-12-16 14:55:56 +00:00
|
|
|
}}
|
|
|
|
>
|
2024-05-31 16:41:18 +00:00
|
|
|
<svg width="17" height="18" viewBox="0 0 17 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<rect x="1" y="3" width="15" height="12" rx="3" stroke="#9A9AAF" strokeWidth="1.5" />
|
|
|
|
<path
|
|
|
|
d="M4 6.75L7.3 9.225C8.01111 9.75833 8.98889 9.75833 9.7 9.225L13 6.75"
|
|
|
|
stroke="#9A9AAF"
|
|
|
|
strokeWidth="1.5"
|
|
|
|
strokeLinecap="round"
|
|
|
|
strokeLinejoin="round"
|
|
|
|
/>
|
|
|
|
</svg>
|
2023-12-16 14:55:56 +00:00
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
}
|