33 lines
688 B
TypeScript
33 lines
688 B
TypeScript
export function QueuesIcon({ className }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<rect x="3" y="10" width="18" height="11" rx="2" stroke="currentColor" strokeWidth="2" />
|
|
<line
|
|
x1="5"
|
|
y1="7"
|
|
x2="19"
|
|
y2="7"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
/>
|
|
<line
|
|
x1="7"
|
|
y1="4"
|
|
x2="17"
|
|
y2="4"
|
|
stroke="currentColor"
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|