10 lines
366 B
XML
10 lines
366 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<defs>
|
|
<clipPath id="c">
|
|
<circle cx="50" cy="50" r="50"/>
|
|
</clipPath>
|
|
</defs>
|
|
<circle cx="50" cy="50" r="50" fill="#a0a0a0"/>
|
|
<circle cx="50" cy="36" r="19" fill="#ececec" clip-path="url(#c)"/>
|
|
<ellipse cx="50" cy="93" rx="34" ry="27" fill="#ececec" clip-path="url(#c)"/>
|
|
</svg>
|