Components
Loading preview...
A vertical rotation of words.
npx shadcn@latest add https://21st.dev/r/dillionverma/word-rotateimport { WordRotate } from "@/components/ui/word-rotate";
export function WordRotateDemo() {
return (
<WordRotate
className="text-4xl font-bold text-black dark:text-white"
words={["Word", "Rotate"]}
/>
);
}