Interactive component playground
import { AnimatedText } from "@tuel/text-effects";
export function MyAnimatedText() {
return (
<AnimatedText
variant="fade"
duration={1000}
delay={200}
className="text-4xl font-bold"
>
Hello World
</AnimatedText>
);
}