13 lines
566 B
XML
13 lines
566 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="health-grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#10b981;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#06b6d4;stop-opacity:1" />
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<!-- 圆形背景 -->
|
||
|
|
<circle cx="16" cy="16" r="15" fill="url(#health-grad)"/>
|
||
|
|
<!-- 医疗十字图标 -->
|
||
|
|
<rect x="14" y="8" width="4" height="16" fill="white" rx="1"/>
|
||
|
|
<rect x="8" y="14" width="16" height="4" fill="white" rx="1"/>
|
||
|
|
</svg>
|