13 lines
700 B
XML
13 lines
700 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="finance-grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#f59e0b;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#1e40af;stop-opacity:1" />
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<!-- 圆形背景 -->
|
||
|
|
<circle cx="16" cy="16" r="15" fill="url(#finance-grad)"/>
|
||
|
|
<!-- 上升趋势图表 -->
|
||
|
|
<path d="M8 22 L12 18 L16 14 L20 10 L24 8" stroke="white" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||
|
|
<path d="M20 8 L24 8 L24 12" stroke="white" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||
|
|
</svg>
|