17 lines
677 B
XML
17 lines
677 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="45" stroke="black" stroke-width="10" fill="none" />
|
||
|
<g stroke-width="5" stroke="white">
|
||
|
<circle cx="50" cy="50" r="37" fill="black" />
|
||
|
</g>
|
||
|
<g stroke-width="4" stroke="white">
|
||
|
<line x1="25" y1="35" x2="75" y2="35" />
|
||
|
<line x1="31" y1="43" x2="69" y2="43" />
|
||
|
<line x1="25" y1="51" x2="75" y2="51" />
|
||
|
<line x1="31" y1="59" x2="69" y2="59" />
|
||
|
<line x1="25" y1="67" x2="75" y2="67" />
|
||
|
</g>
|
||
|
</svg>
|