16 lines
845 B
XML
16 lines
845 B
XML
|
|
<svg width="200" height="200" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<rect width="200" height="200" fill="white"/>
|
||
|
|
<g transform="scale(5)">
|
||
|
|
<!-- 简化的二维码示例 -->
|
||
|
|
<rect x="5" y="5" width="30" height="30" fill="#21B53F"/>
|
||
|
|
<rect x="7" y="7" width="26" height="26" fill="white"/>
|
||
|
|
<rect x="10" y="10" width="20" height="20" fill="#21B53F"/>
|
||
|
|
<rect x="15" y="15" width="10" height="10" fill="white"/>
|
||
|
|
<!-- 微信Logo -->
|
||
|
|
<circle cx="20" cy="20" r="7" fill="#21B53F"/>
|
||
|
|
<circle cx="18" cy="18" r="1" fill="white"/>
|
||
|
|
<circle cx="22" cy="18" r="1" fill="white"/>
|
||
|
|
<path d="M16,22 C18,24 22,24 24,22" stroke="white" fill="none" stroke-width="0.8"/>
|
||
|
|
</g>
|
||
|
|
<text x="100" y="180" text-anchor="middle" font-family="Arial" font-size="14" fill="#21B53F">微信关注我们</text>
|
||
|
|
</svg>
|