15 lines
466 B
XML
15 lines
466 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#3498db"/>
|
|
<stop offset="100%" style="stop-color:#2c3e50"/>
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Background -->
|
|
<circle cx="50" cy="50" r="48" fill="url(#bg)"/>
|
|
|
|
<!-- Car emoji -->
|
|
<text x="50" y="65" text-anchor="middle" font-size="45" fill="#fff">🚗</text>
|
|
</svg>
|