13 lines
633 B
XML
13 lines
633 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#1890ff;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#40a9ff;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="100" height="100" rx="20" fill="url(#grad)"/>
|
|
<circle cx="50" cy="35" r="15" fill="white" opacity="0.9"/>
|
|
<rect x="35" y="55" width="30" height="25" rx="5" fill="white" opacity="0.9"/>
|
|
<line x1="25" y1="85" x2="75" y2="85" stroke="white" stroke-width="4" stroke-linecap="round" opacity="0.7"/>
|
|
</svg>
|