25 lines
717 B
TypeScript
Executable File
25 lines
717 B
TypeScript
Executable File
import { Box } from "@mui/material";
|
|
|
|
|
|
// interface Props {
|
|
// color: string;
|
|
// }
|
|
|
|
export default function ArrowLeft() {
|
|
|
|
return (
|
|
<Box
|
|
sx={{
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
}}
|
|
>
|
|
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M20.75 12H4.25" stroke="#7E2AEA" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
|
|
<path d="M11 5.25L4.25 12L11 18.75" stroke="#7E2AEA" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
|
|
</svg>
|
|
|
|
</Box>
|
|
);
|
|
} |