14 lines
597 B
XML
14 lines
597 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="transport-grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#3b82f6;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#64748b;stop-opacity:1" />
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<!-- 圆形背景 -->
|
||
|
|
<circle cx="16" cy="16" r="15" fill="url(#transport-grad)"/>
|
||
|
|
<!-- 卡车图标 -->
|
||
|
|
<path d="M8 12h10v8H8z M18 14h4l2 4v2h-6v-6z" fill="white"/>
|
||
|
|
<circle cx="11" cy="21" r="1.5" fill="white"/>
|
||
|
|
<circle cx="21" cy="21" r="1.5" fill="white"/>
|
||
|
|
</svg>
|