11 lines
460 B
XML
11 lines
460 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="33" y1="33" x2="67" y2="67" />
|
|
<line x1="33" y1="67" x2="67" y2="33" />
|
|
</g>
|
|
</svg>
|