12 lines
453 B
XML
Executable File
12 lines
453 B
XML
Executable File
<svg xmlns="http://www.w3.org/2000/svg" width="0" height="0">
|
|
<defs>
|
|
<mask id="gradient-mask" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox">
|
|
<linearGradient id="gradient" x1="0" y1="1" x2="0" y2="0">
|
|
<stop offset="0.75" stop-color="black" />
|
|
<stop offset="1" stop-color="white" />
|
|
</linearGradient>
|
|
<rect x="0" y="0" width="1" height="1" fill="url(#gradient)" />
|
|
</mask>
|
|
</defs>
|
|
</svg>
|