17 lines
760 B
XML
17 lines
760 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="manu-grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#1e40af;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#94a3b8;stop-opacity:1" />
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<!-- 圆形背景 -->
|
||
|
|
<circle cx="16" cy="16" r="15" fill="url(#manu-grad)"/>
|
||
|
|
<!-- 齿轮图标 -->
|
||
|
|
<circle cx="16" cy="16" r="5" fill="white"/>
|
||
|
|
<circle cx="16" cy="16" r="2" fill="url(#manu-grad)"/>
|
||
|
|
<rect x="15" y="8" width="2" height="4" fill="white"/>
|
||
|
|
<rect x="15" y="20" width="2" height="4" fill="white"/>
|
||
|
|
<rect x="8" y="15" width="4" height="2" fill="white"/>
|
||
|
|
<rect x="20" y="15" width="4" height="2" fill="white"/>
|
||
|
|
</svg>
|