frontPanel/src/assets/icons/IconPlus.tsx

35 lines
828 B
TypeScript
Raw Normal View History

2023-04-15 09:10:59 +00:00
import { IconButton } from "@mui/material";
export default function IconPlus() {
return (
<IconButton>
2023-08-11 07:49:16 +00:00
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
2023-04-15 09:10:59 +00:00
<path
d="M18 0H6C2.68629 0 0 2.68629 0 6V18C0 21.3137 2.68629 24 6 24H18C21.3137 24 24 21.3137 24 18V6C24 2.68629 21.3137 0 18 0Z"
fill="#7E2AEA"
/>
2023-08-11 07:49:16 +00:00
<path
d="M3.75 12H20.25"
stroke="white"
2023-08-11 13:59:00 +00:00
strokeWidth="1.5"
2023-08-11 07:49:16 +00:00
stroke-linecap="round"
strokeLinejoin="round"
/>
<path
d="M12 3.75V20.25"
stroke="white"
2023-08-11 13:59:00 +00:00
strokeWidth="1.5"
2023-08-11 07:49:16 +00:00
stroke-linecap="round"
strokeLinejoin="round"
/>
2023-04-15 09:10:59 +00:00
</svg>
</IconButton>
);
}