DEV Community

Freecodez
Freecodez

Posted on

2

Glowing Gradient Text React Component

Hey there, You are most welcome to this article.

Glowing Gradient Text React Component

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>
    );
};

Enter fullscreen mode Exit fullscreen mode

Source Code : https://freecodez.com/post/n4eyfhq

For more such articles visit : https://freecodez.com

Image of Datadog

The Essential Toolkit for Front-end Developers

Take a user-centric approach to front-end monitoring that evolves alongside increasingly complex frameworks and single-page applications.

Get The Kit

Top comments (0)