Spaces:
Runtime error
Runtime error
File size: 1,234 Bytes
8fd7a1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<!-- Circular background -->
<circle cx="10" cy="10" r="9" fill="#00D2FF" stroke="#0099CC" stroke-width="1"/>
<!-- Globe/Earth design in white -->
<g fill="none" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round">
<!-- Main circle -->
<circle cx="10" cy="10" r="6"/>
<!-- Vertical meridian -->
<path d="M10 4 Q10 10 10 16"/>
<!-- Horizontal equator -->
<path d="M4 10 L16 10"/>
<!-- Northern hemisphere curve -->
<path d="M6.5 7 Q10 6 13.5 7"/>
<!-- Southern hemisphere curve -->
<path d="M6.5 13 Q10 14 13.5 13"/>
<!-- Left hemisphere curve -->
<path d="M7 6.5 Q6 10 7 13.5"/>
<!-- Right hemisphere curve -->
<path d="M13 6.5 Q14 10 13 13.5"/>
</g>
<!-- Small decorative dots representing different countries/regions -->
<circle cx="7" cy="8" r="0.8" fill="white" opacity="0.8"/>
<circle cx="13" cy="12" r="0.6" fill="white" opacity="0.7"/>
<circle cx="11" cy="7" r="0.5" fill="white" opacity="0.6"/>
</svg> |