73 lines
1.9 KiB
XML
73 lines
1.9 KiB
XML
import { Box } from "@mui/material";
|
|
|
|
interface Props {
|
|
color?: string;
|
|
}
|
|
|
|
export default function ({ color }: Props) {
|
|
return (
|
|
<Box
|
|
sx={{
|
|
height: "36px",
|
|
width: "36px",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
}}
|
|
>
|
|
<svg
|
|
width="36"
|
|
height="36"
|
|
viewBox="0 0 36 36"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<rect width="36" height="36" rx="6" fill="#7E2AEA" />
|
|
<path
|
|
d="M25.6426 10H10.6801C10.3045 10 10 10.3433 10 10.7668V24.5691C10 24.9926 10.3045 25.3359 10.6801 25.3359H25.6426C26.0182 25.3359 26.3227 24.9926 26.3227 24.5691V10.7668C26.3227 10.3433 26.0182 10 25.6426 10Z"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M10 14.6641H26.3227"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M12.2266 12.4375H24.0976"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M10 21.4587L14.7155 17.4688L20.1564 22.5469"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<circle cx="18.3913" cy="17.7038" r="0.774113" fill="white" />
|
|
<path
|
|
d="M18.707 20.9141L21.2461 18.375"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M21.2461 18.375L26.3243 22.365"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
</Box>
|
|
);
|
|
}
|