15 lines
705 B
XML
15 lines
705 B
XML
<svg width="512" height="512" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
|
|
<!-- Yellow background with rounded corners -->
|
|
<rect width="512" height="512" rx="80" ry="80" fill="#FEE715"/>
|
|
<!-- Bus icon - front view -->
|
|
<g transform="translate(256, 256)">
|
|
<!-- Bus body (black rectangle) -->
|
|
<rect x="-140" y="-100" width="280" height="200" rx="20" ry="20" fill="#101820"/>
|
|
<!-- Large windshield (yellow cutout) -->
|
|
<rect x="-120" y="-80" width="240" height="120" rx="15" ry="15" fill="#FEE715"/>
|
|
<!-- Two circular headlights (yellow cutouts) -->
|
|
<circle cx="-60" cy="80" r="30" fill="#FEE715"/>
|
|
<circle cx="60" cy="80" r="30" fill="#FEE715"/>
|
|
</g>
|
|
</svg>
|