magic-ui
components
ui

text-animate

A text animation component that animates text using a variety of different animations.

animated
text
transition
View Docs

Source Code

Files
text-animate
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}