11 lines
524 B
XML
11 lines
524 B
XML
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000">
|
||
|
|
<defs>
|
||
|
|
<pattern id="square" width="10" height="10" patternUnits="userSpaceOnUse" >
|
||
|
|
<rect width="10" height="10" style="fill:none;stroke:#a9a9a9"/>
|
||
|
|
</pattern>
|
||
|
|
<pattern id="quad" width="100" height="100" patternUnits="userSpaceOnUse" >
|
||
|
|
<rect width="100" height="100" style="stroke:#366" fill="url(#square)"/>
|
||
|
|
</pattern>
|
||
|
|
</defs>
|
||
|
|
<rect width="1000" height="1000" fill="url(#quad)" style="stroke:#366;stroke-width:2px"/>
|
||
|
|
</svg>
|