18 lines
721 B
XML
18 lines
721 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
|
|
<rect width="64" height="64" fill="#000"/>
|
|
<!-- Wireframe tank silhouette (side profile) -->
|
|
<g fill="none" stroke="#4ade80" stroke-width="2" stroke-linejoin="round">
|
|
<!-- Hull -->
|
|
<polyline points="10,40 14,32 46,32 50,40 10,40"/>
|
|
<!-- Turret -->
|
|
<polyline points="22,32 24,24 36,24 38,32"/>
|
|
<!-- Barrel -->
|
|
<line x1="36" y1="27" x2="56" y2="27"/>
|
|
<!-- Tracks -->
|
|
<rect x="10" y="40" width="40" height="8"/>
|
|
<line x1="16" y1="40" x2="16" y2="48"/>
|
|
<line x1="24" y1="40" x2="24" y2="48"/>
|
|
<line x1="32" y1="40" x2="32" y2="48"/>
|
|
<line x1="40" y1="40" x2="40" y2="48"/>
|
|
</g>
|
|
</svg>
|