14 lines
641 B
XML
14 lines
641 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="visual-grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#ec4899;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#8b5cf6;stop-opacity:1" />
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<!-- 圆形背景 -->
|
||
|
|
<circle cx="16" cy="16" r="15" fill="url(#visual-grad)"/>
|
||
|
|
<!-- 画笔图标 -->
|
||
|
|
<path d="M8 22 L14 16 L18 20 L24 10" stroke="white" stroke-width="2" fill="none" stroke-linecap="round"/>
|
||
|
|
<circle cx="18" cy="20" r="2" fill="white"/>
|
||
|
|
<path d="M22 8 L24 10 L16 18 L14 16 Z" fill="white"/>
|
||
|
|
</svg>
|