<svg>
<!-- Градиент -->
<linearGradient id="linear-gradient">
<stop offset="0%" stop-color="gold"/>
<stop offset="100%" stop-color="teal"/>
</linearGradient>
<!-- Фигура с градиентной заливкой -->
<rect fill="url(#linear-gradient)"
width="100%" height="100%"/>
</svg>
<defs>
<linearGradient id="linear" gradientUnits="userSpaceOnUse">
<stop style="stop-color:#000000;" offset="0"/>
<stop style="stop-color:#000000;stop-opacity:0;" offset="1"/>
</linearGradient>
</defs>