14 lines
651 B
XML
14 lines
651 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="40" height="40">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#1e3a5f"/>
|
||
|
|
<stop offset="100%" style="stop-color:#2563eb"/>
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<rect x="10" y="10" width="80" height="80" rx="12" fill="url(#grad)"/>
|
||
|
|
<path d="M30 35 L50 25 L70 35 L70 65 L50 75 L30 65 Z" fill="none" stroke="white" stroke-width="3"/>
|
||
|
|
<circle cx="50" cy="50" r="8" fill="white"/>
|
||
|
|
<path d="M50 42 L50 35" stroke="white" stroke-width="2"/>
|
||
|
|
<path d="M50 58 L50 65" stroke="white" stroke-width="2"/>
|
||
|
|
</svg>
|