magic-ui
components
ui

word-rotate

A vertical rotation of words.

animated
effect
transition
View Docs

Source Code

Files
word-rotate
1import { WordRotate } from "@/components/magicui/word-rotate";
2 
3export function WordRotateDemo() {
4  return (
5    <WordRotate
6      className="text-4xl font-bold text-black dark:text-white"
7      words={["Word", "Rotate"]}
8    />
9  );
10}