10 lines
372 B
XML
10 lines
372 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<defs>
|
|
<linearGradient id="g" x1="0" y1="0" x2="1" y2="0">
|
|
<stop offset="0" stop-color="#0F0" />
|
|
<stop offset="1" stop-color="#00F"/>
|
|
</linearGradient>
|
|
</defs>
|
|
<rect width="100" height="100" fill="url("#g")"/>
|
|
</svg>
|