1
2
3
4
5
6
7
8
9
10
|
<?xml version="1.0" encoding="utf-8"?>
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="sw-gradient" x1="0" x2="1" y1="1" y2="0">
<stop id="stop1" stop-color="rgba(211.254, 37.039, 247.069, 1)" offset="0"/>
<stop id="stop2" stop-color="rgba(47.036, 44.157, 226.237, 1)" offset="1"/>
</linearGradient>
</defs>
<path fill="url(#sw-gradient)" d="M26.2,-28.1C29.9,-22.4,26.1,-11.2,23.6,-2.5C21.2,6.3,20,12.6,16.3,17.9C12.6,23.3,6.3,27.7,0.6,27.2C-5.1,26.6,-10.2,20.9,-16.8,15.6C-23.3,10.2,-31.3,5.1,-33.9,-2.6C-36.4,-10.2,-33.6,-20.5,-27,-26.1C-20.5,-31.7,-10.2,-32.7,0.5,-33.2C11.2,-33.7,22.4,-33.7,26.2,-28.1Z" width="100%" height="100%" transform="matrix(1, 0, 0, 1, 50, 50)" style="transition: all 0.3s ease 0s;" stroke-width="0" stroke="url(#sw-gradient)"/>
</svg>
|