15 lines
704 B
XML
15 lines
704 B
XML
|
|
<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg">
|
||
|
|
<defs>
|
||
|
|
<linearGradient id="locationGrad" x1="0%" y1="0%" x2="100%" y2="100%">
|
||
|
|
<stop offset="0%" style="stop-color:#667eea;stop-opacity:1" />
|
||
|
|
<stop offset="100%" style="stop-color:#764ba2;stop-opacity:1" />
|
||
|
|
</linearGradient>
|
||
|
|
</defs>
|
||
|
|
<!-- Location pin -->
|
||
|
|
<path d="M 20 8 Q 14 8 14 14 Q 14 20 20 28 Q 26 20 26 14 Q 26 8 20 8 Z" fill="url(#locationGrad)"/>
|
||
|
|
<!-- Center dot -->
|
||
|
|
<circle cx="20" cy="14" r="3" fill="white"/>
|
||
|
|
<!-- UK flag pattern -->
|
||
|
|
<line x1="19" y1="13" x2="21" y2="15" stroke="#e74c3c" stroke-width="0.5"/>
|
||
|
|
<line x1="21" y1="13" x2="19" y2="15" stroke="#e74c3c" stroke-width="0.5"/>
|
||
|
|
</svg>
|