12 lines
537 B
XML
12 lines
537 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:#60A5FA"/>
|
|
<stop offset="100%" style="stop-color:#3B82F6"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="100" height="100" rx="20" fill="url(#bg)"/>
|
|
<path d="M50 25 L50 75 M50 25 C40 25 30 30 30 40 C30 50 40 55 50 55 M50 55 C60 55 70 60 70 70 C70 80 60 85 50 85"
|
|
stroke="white" stroke-width="8" stroke-linecap="round" fill="none"/>
|
|
</svg>
|