14 lines
605 B
XML
14 lines
605 B
XML
|
|
<svg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<!-- 渐变背景 -->
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="strangerGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" stop-color="#F5A623"/>
|
||
|
|
<stop offset="100%" stop-color="#F8E71C"/>
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<!-- 背景圆 -->
|
||
|
|
<circle cx="60" cy="60" r="60" fill="url(#strangerGradient)"/>
|
||
|
|
<!-- 用户图标 -->
|
||
|
|
<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"/>
|
||
|
|
</svg>
|