23 lines
762 B
TypeScript
23 lines
762 B
TypeScript
import {Box} from "@mui/material";
|
|
|
|
export default function DevaceSmallIcon() {
|
|
|
|
return (
|
|
<Box
|
|
sx={{
|
|
height: "36px",
|
|
width: "36px",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
borderRadius: "6px",
|
|
backgroundColor: "#EEE4FC"
|
|
}}
|
|
>
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<rect x="7.5" y="2" width="9" height="20" rx="3" stroke="#7E2AEA" strokeWidth="1.5"/>
|
|
<path d="M13.5 2.5L10.5 2.5" stroke="#7E2AEA" strokeWidth="2.5" strokeLinecap="round"/>
|
|
</svg>
|
|
</Box>
|
|
);
|
|
} |