13 lines
525 B
XML
13 lines
525 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:#7c3aed"/>
|
|
<stop offset="100%" style="stop-color:#a855f7"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="100" height="100" rx="20" fill="url(#bg)"/>
|
|
<text x="50" y="68" font-family="Arial, sans-serif" font-size="48" font-weight="bold" text-anchor="middle" fill="white">P</text>
|
|
<circle cx="75" cy="25" r="12" fill="#10b981"/>
|
|
</svg>
|
|
|