8 lines
402 B
XML
8 lines
402 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">
|
|
<line x1="20" y1="20" x2="80" y2="80" stroke="black" stroke-width="8" />
|
|
<line x1="80" y1="20" x2="20" y2="80" stroke="black" stroke-width="8" />
|
|
</svg>
|