16 lines
449 B
XML
16 lines
449 B
XML
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||
|
<svg
|
||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
width="500"
|
||
|
height="500"
|
||
|
version="1.1" >
|
||
|
|
||
|
<radialGradient id="rad" >
|
||
|
<stop style="stop-color:#000000;stop-opacity:1;" offset="0" />
|
||
|
<stop style="stop-color:#000000;stop-opacity:0;" offset="1" />
|
||
|
</radialGradient>
|
||
|
|
||
|
<circle fill="url(#rad)" cx="250" cy="250" r="250"/>
|
||
|
</svg>
|