14 lines
640 B
XML
14 lines
640 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
<defs>
|
|
<linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#00d4ff;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#007bff;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="32" height="32" rx="6" fill="#1a1a2e"/>
|
|
<circle cx="16" cy="16" r="10" fill="none" stroke="url(#grad)" stroke-width="2"/>
|
|
<circle cx="16" cy="16" r="4" fill="url(#grad)"/>
|
|
<rect x="6" y="12" width="4" height="8" rx="1" fill="#00d4ff"/>
|
|
<rect x="22" y="12" width="4" height="8" rx="1" fill="#00d4ff"/>
|
|
</svg>
|