19 lines
832 B
XML
19 lines
832 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<svg
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns:svg="http://www.w3.org/2000/svg"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="100"
|
|
height="100"
|
|
version="1.1">
|
|
|
|
<rect x="10" y="20" rx="5" ry="5" width="80" height="60" stroke="black" stroke-width="4" fill="none"/>
|
|
<line x1="10" y1="35" x2="90" y2="35" stroke="black" stroke-width="4"/>
|
|
<line x1="10" y1="65" x2="90" y2="65" stroke="black" stroke-width="4"/>
|
|
|
|
<circle cx="31" cy="50" r="15" stroke="black" stroke-width="4" fill="none"/>
|
|
<circle cx="31" cy="50" r="5" stroke="black" stroke-width="4" fill="black"/>
|
|
<circle cx="69" cy="50" r="15" stroke="black" stroke-width="4" fill="none"/>
|
|
<circle cx="69" cy="50" r="5" stroke="black" stroke-width="4" fill="black"/>
|
|
</svg>
|