A
Auralix UI

Blur Text

Text that reveals itself with a blur effect animation.

Preview

RevealAnimation

Installation

bash
npx auralix-ui add blur-text

Usage

Basic Blur Text

tsx
import { BlurText } from "@/components/ui/BlurText";

<BlurText text="Hello World" />

With Delay

tsx
<BlurText text="Content appears later" delay={500} wordDelay={100} />

Props

NameTypeDefaultDescription
textstring-The text to display.
delaynumber0Delay before starting animation (ms).
wordDelaynumber50Delay between each word (ms).