blob: b986c12ccb68231d3d47e71a3746f934fef7e289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?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 version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="100%" height="100%" xml:space="preserve">
<defs>
<pattern id="basicPattern" x="-6" y="-6" width="24" height="24" patternUnits="userSpaceOnUse">
<circle cx="6" cy="6" r="5" fill="#000000" />
<circle cx="18" cy="18" r="5" fill="#000000" />
</pattern>
</defs>
<rect x="0" y="0" width="100%" height="100%" fill="url(#basicPattern)" />
</svg>
|