15 lines
610 B
XML
15 lines
610 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
|
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid meet">
|
|
<circle cx="50" cy="50" r="44" stroke="white" stroke-width="12" fill="black" />
|
|
<g stroke-width="10" stroke="white">
|
|
<line x1="30" y1="70" x2="50" y2="50" />
|
|
</g>
|
|
<g stroke-width="0" stroke="none">
|
|
<circle cx="55" cy="45" r="15" fill="white" />
|
|
<circle cx="55" cy="45" r="11" fill="black" />
|
|
<path d="m55,36 a9,9 0 0,0 -9,9 Z" fill="white" />
|
|
</g>
|
|
</svg>
|