22 lines
798 B
XML
22 lines
798 B
XML
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32">
|
|
<defs>
|
|
<linearGradient id="logoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#409eff;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#67c23a;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- 背景圆形 -->
|
|
<circle cx="16" cy="16" r="15" fill="url(#logoGradient)" stroke="#fff" stroke-width="1"/>
|
|
|
|
<!-- 商品图标 -->
|
|
<g fill="#fff">
|
|
<!-- 购物袋主体 -->
|
|
<path d="M9 12h14v12a2 2 0 0 1-2 2H11a2 2 0 0 1-2-2V12z"/>
|
|
<!-- 购物袋手柄 -->
|
|
<path d="M12 8a4 4 0 0 1 8 0v4h-2V8a2 2 0 0 0-4 0v4h-2V8z"/>
|
|
<!-- 装饰点 -->
|
|
<circle cx="13" cy="18" r="1"/>
|
|
<circle cx="19" cy="18" r="1"/>
|
|
</g>
|
|
</svg> |