23 lines
705 B
XML
23 lines
705 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<svg width="5" height="5" viewBox="0 0 5 5" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<style type="text/css">
|
|
<![CDATA[
|
|
#background{
|
|
fill:#333
|
|
}
|
|
#foreground rect {
|
|
fill: #444;
|
|
}
|
|
]]>
|
|
</style>
|
|
</defs>
|
|
<rect id="background" x="0" y="0" width="100" height="100" />
|
|
<g id="foreground">
|
|
<rect x="0" y="4" width="1" height="1" />
|
|
<rect x="1" y="3" width="1" height="1" />
|
|
<rect x="2" y="2" width="1" height="1" />
|
|
<rect x="3" y="1" width="1" height="1" />
|
|
<rect x="4" y="0" width="1" height="1" />
|
|
</g>
|
|
</svg> |