19 lines
832 B
XML
19 lines
832 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" width="120" height="120">
|
||
<defs>
|
||
<linearGradient id="bg" x1="0" y1="0" x2="1" y2="1">
|
||
<stop offset="0%" stop-color="#0d2a4a"/>
|
||
<stop offset="100%" stop-color="#1565a0"/>
|
||
</linearGradient>
|
||
<linearGradient id="accent" x1="0" y1="0" x2="1" y2="1">
|
||
<stop offset="0%" stop-color="#2196f3"/>
|
||
<stop offset="100%" stop-color="#42a5f5"/>
|
||
</linearGradient>
|
||
</defs>
|
||
<!-- Background with rounded corners -->
|
||
<rect width="120" height="120" rx="22" fill="url(#bg)"/>
|
||
<!-- Decorative top bar -->
|
||
<rect x="18" y="18" width="84" height="6" rx="3" fill="url(#accent)" opacity="0.9"/>
|
||
<!-- Letter М -->
|
||
<path d="M20 98 L20 38 L36 38 L60 72 L84 38 L100 38 L100 98 L84 98 L84 62 L66 90 L54 90 L36 62 L36 98 Z" fill="#ffffff"/>
|
||
</svg>
|