forked from NotNet/gluestick
72 lines
1.4 KiB
TypeScript
72 lines
1.4 KiB
TypeScript
import React from "react";
|
|
|
|
export default function NotNetIcon() {
|
|
return (
|
|
<svg
|
|
width="4"
|
|
height="4"
|
|
viewBox="0 0 4 4"
|
|
version="1.1"
|
|
id="svg1"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<g id="notnet">
|
|
<g id="red">
|
|
<rect
|
|
fill="currentColor"
|
|
id="rect1"
|
|
width="2"
|
|
height="1"
|
|
x="1"
|
|
y="0"
|
|
/>
|
|
<rect
|
|
fill="currentColor"
|
|
id="rect2"
|
|
width="1"
|
|
height="2"
|
|
x="0"
|
|
y="1"
|
|
/>
|
|
<rect
|
|
fill="currentColor"
|
|
id="rect3"
|
|
width="1"
|
|
height="1"
|
|
x="1"
|
|
y="2"
|
|
/>
|
|
</g>
|
|
<g id="blue">
|
|
<rect
|
|
fill="currentColor"
|
|
id="rect4"
|
|
width="2"
|
|
height="1"
|
|
x="-3"
|
|
y="-4"
|
|
transform="scale(-1)"
|
|
/>
|
|
<rect
|
|
fill="currentColor"
|
|
id="rect5"
|
|
width="1"
|
|
height="2"
|
|
x="-4"
|
|
y="-3"
|
|
transform="scale(-1)"
|
|
/>
|
|
<rect
|
|
fill="currentColor"
|
|
id="rect6"
|
|
width="1"
|
|
height="1"
|
|
x="-3"
|
|
y="-2"
|
|
transform="scale(-1)"
|
|
/>
|
|
</g>
|
|
</g>
|
|
</svg>
|
|
);
|
|
}
|