A text animation component that animates text using a variety of different animations.
1import { TextAnimate } from "@/components/magicui/text-animate";
2
3export function TextAnimateDemo() {
4 return (
5 <TextAnimate animation="blurInUp" by="character">
6 Blur in by character
7 </TextAnimate>
8 );
9}