22 lines
736 B
TypeScript
Executable File
22 lines
736 B
TypeScript
Executable File
import { Box } from "@mui/material";
|
|
|
|
|
|
export default function BackArrowIcon() {
|
|
|
|
return (
|
|
<Box
|
|
sx={{
|
|
height: "24px",
|
|
width: "24px",
|
|
display: "flex",
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
<path d="M20.25 12H3.75" stroke="black" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" />
|
|
<path d="M10.5 5.25L3.75 12L10.5 18.75" stroke="black" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" />
|
|
</svg>
|
|
</Box>
|
|
);
|
|
} |