17 lines
621 B
XML
17 lines
621 B
XML
<?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 xmlns="http://www.w3.org/2000/svg" version="1.1">
|
|
<mask id="fadein-mask"
|
|
maskUnits="objectBoundingBox"
|
|
maskContentUnits="objectBoundingBox">
|
|
<linearGradient id="fadein-mask-gradient"
|
|
gradientUnits="objectBoundingBox"
|
|
x2="1" y2="0">
|
|
<stop stop-color="white" stop-opacity="0" offset="0"/>
|
|
<stop stop-color="white" stop-opacity="1" offset="0.75"/>
|
|
</linearGradient>
|
|
<rect x="0" y="0" width="1" height="1" fill="url(#fadein-mask-gradient)"/>
|
|
</mask>
|
|
</svg>
|
|
|