10 lines
444 B
XML
10 lines
444 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="g" x1="0" y1="0" x2="0" y2="1">
|
|
<stop offset="0%" stop-color="#3b82f6"/>
|
|
<stop offset="100%" stop-color="#8b5cf6"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<circle cx="50" cy="50" r="48" fill="url(#g)"/>
|
|
<text x="50" y="66" text-anchor="middle" font-size="50" fill="white" font-family="system-ui, -apple-system, sans-serif">π</text>
|
|
</svg> |