40 lines
841 B
TypeScript
40 lines
841 B
TypeScript
function MenuBars() {
|
|
return (
|
|
<svg
|
|
width="36"
|
|
height="30"
|
|
viewBox="0 0 120 100"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<g id="Mask group">
|
|
<g id="Frame 1">
|
|
<rect width="120" height="100" />
|
|
<line
|
|
id="LineA"
|
|
x1="11.5"
|
|
y1="31.5"
|
|
x2="108.5"
|
|
y2="31.5"
|
|
strokeWidth="6"
|
|
strokeLinecap="round"
|
|
class="stroke-black dark:stroke-white"
|
|
/>
|
|
<line
|
|
id="LineB"
|
|
x1="11.5"
|
|
y1="64.5"
|
|
x2="108.5"
|
|
y2="64.5"
|
|
strokeWidth="6"
|
|
strokeLinecap="round"
|
|
class="stroke-black dark:stroke-white"
|
|
/>
|
|
</g>
|
|
</g>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default MenuBars;
|