Hey there, You are most welcome to this article.
Glowing Gradient Text React Component
For full source code visit : https://freecodez.com/post/n4eyfhq
// https://freecodez.com
const Hello = (props) => {
return (
<div>
<svg width="0" height="0">
<filter id="f" x="-50%" y="-200%" width="200%" height="500%">
<feGaussianBlur stdDeviation="35"></feGaussianBlur>
<feColorMatrix type="saturate" values="1.3"></feColorMatrix>
<feComposite in="SourceGraphic"></feComposite>
</filter>
</svg>
<h1>{props.txt}</h1>
</div>
);
};
Source Code : https://freecodez.com/post/n4eyfhq
For more such articles visit : https://freecodez.com
Top comments (0)