17 lines
No EOL
762 B
XML
17 lines
No EOL
762 B
XML
<svg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg">
|
|
<!-- 渐变背景 -->
|
|
<defs>
|
|
<linearGradient id="myGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" stop-color="#5856D6"/>
|
|
<stop offset="100%" stop-color="#AF52DE"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<!-- 背景圆 -->
|
|
<circle cx="60" cy="60" r="60" fill="url(#myGradient)"/>
|
|
<!-- 用户图标 -->
|
|
<circle cx="60" cy="45" r="18" fill="white" fill-opacity="0.9"/>
|
|
<path d="M60 63 C45 63 35 83 60 100 C85 83 75 63 60 63 Z" fill="white" fill-opacity="0.9"/>
|
|
<!-- 表示"自己"的特殊标记 -->
|
|
<circle cx="85" cy="35" r="8" fill="#4CD964" stroke="white" stroke-width="2"/>
|
|
<circle cx="85" cy="35" r="3" fill="white"/>
|
|
</svg> |