17 lines
968 B
XML
17 lines
968 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#7c3aed;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#a78bfa;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<circle cx="50" cy="50" r="45" fill="url(#grad)"/>
|
|
<circle cx="50" cy="35" r="12" fill="white" opacity="0.9"/>
|
|
<circle cx="35" cy="55" r="8" fill="white" opacity="0.7"/>
|
|
<circle cx="65" cy="55" r="8" fill="white" opacity="0.7"/>
|
|
<circle cx="50" cy="70" r="6" fill="white" opacity="0.5"/>
|
|
<line x1="50" y1="47" x2="35" y2="55" stroke="white" stroke-width="2" opacity="0.6"/>
|
|
<line x1="50" y1="47" x2="65" y2="55" stroke="white" stroke-width="2" opacity="0.6"/>
|
|
<line x1="35" y1="55" x2="50" y2="70" stroke="white" stroke-width="2" opacity="0.5"/>
|
|
<line x1="65" y1="55" x2="50" y2="70" stroke="white" stroke-width="2" opacity="0.5"/>
|
|
</svg>
|