I am looking to design an SVG circle with a fading stroke that blends into the background and features an arrow at one end. The goal is for the ring to fade out completely right above the arrow, similar to the visual reference provided in the image.view example here
Could you please advise on the necessary adjustments to the code snippet below so that the SVG displays as requested?
<svg height="210" width="220" transform = 'translate(-10 10)' >
<linearGradient id="grad1" x1="0%" y1="40%" x2="20%" y2="-20%">
<stop offset="0%" stop-color="#3381FF" />
<!--stop offset= "0%" stop-color= ""/-->
<stop offset="100%" stop-color="#3381FF" stop-opacity="0" />
</linearGradient>
<circle cx="100" cy="105" r="96" stroke="url(#grad1)" stroke-width="16" fill="none" transform='translate(14 0)' />
<svg height="210" width="500" transform = 'translate(-10 10)'>
<polygon points="19 65 33.5,105 3.5,105" style="fill:#3381FF;stroke:#3381FF;stroke-width:1" />
</svg>
</svg>
This is a blockquote example.