Files
2026-07-13 13:32:57 +08:00

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>
);
}