21 lines
549 B
XML
21 lines
549 B
XML
<svg class="off" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
<style>
|
|
path, rect {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.on {
|
|
stroke: red;
|
|
}
|
|
|
|
.off {
|
|
stroke: black;
|
|
}
|
|
</style>
|
|
|
|
<rect x="29" y="30" width="6" height="21" fill="none" />
|
|
<rect x="65" y="30" width="6" height="21" fill="none" />
|
|
<path fill="none" d="M 43, 75 A 1 1 0 0 1 57,75 L 57,84 L 43,84 Z" />
|
|
<path fill="white" fill-opacity="0.0" d="M 23,10 L 77,10 A 50 49 0 0 1 77,91 L 23,91 A 50 49 0 0 1 23,10 Z" onclick="top.toggle_outlet(this.parentElement)" />
|
|
</svg>
|