18 lines
637 B
TypeScript
18 lines
637 B
TypeScript
export function BatchesIcon({ 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="3" width="7" height="7" rx="2" stroke="currentColor" strokeWidth="2" />
|
|
<rect x="3" y="14" width="7" height="7" rx="2" stroke="currentColor" strokeWidth="2" />
|
|
<rect x="14" y="3" width="7" height="7" rx="2" stroke="currentColor" strokeWidth="2" />
|
|
<rect x="14" y="14" width="7" height="7" rx="2" stroke="currentColor" strokeWidth="2" />
|
|
</svg>
|
|
);
|
|
}
|