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

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

Retry later