37 lines
758 B
XML
37 lines
758 B
XML
const Icon = () => (
|
|
<svg
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M19 3H5C4.4 3 4 3.4 4 4V11C4 11.5 4.4 12 5 12H19C19.5 12 20 11.6 20 11V4C20 3.4 19.6 3 19 3ZM5.5 10.5V10.1L7.3 8.8L8.6 9.6C8.9 9.8 9.3 9.8 9.5 9.5L11 8.1L13.4 10.5H5.5ZM18.5 10.5H15.6L11.6 6.5C11.3 6.2 10.8 6.2 10.5 6.5L8.9 8L7.7 7.2C7.4 7 7.1 7 6.8 7.2L5.5 8.2V4.5H18.5V10.5Z"
|
|
fill="currentColor"
|
|
/>
|
|
<rect
|
|
x="4.75"
|
|
y="15.5"
|
|
width="5"
|
|
height="4.5"
|
|
rx="1"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
fill="none"
|
|
/>
|
|
<rect
|
|
x="12.25"
|
|
y="15.5"
|
|
width="5"
|
|
height="4.5"
|
|
rx="1"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
fill="none"
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
export default Icon;
|