9 lines
366 B
XML
9 lines
366 B
XML
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
||
|
<mask id="mask">
|
||
|
<rect x="0" y="0" width="50" height="100" fill="white" />
|
||
|
</mask>
|
||
|
<circle cx="50" cy="50" r="50" fill="black" mask="url(#mask)" />
|
||
|
<circle cx="50" cy="50" r="45" fill-opacity="0" stroke="black" stroke-width="10" />
|
||
|
</svg>
|