Components
Loading preview...
A dynamic text morphing component for Magic UI.
npx shadcn@latest add https://21st.dev/r/dillionverma/morphing-textimport { MorphingText } from "@/components/ui/morphing-text";
const texts = [
"Hello",
"Morphing",
"Text",
"Animation",
"React",
"Component",
"Smooth",
"Transition",
"Engaging",
];
function MorphingTextDemo() {
return <MorphingText texts={texts} />;
}
export { MorphingTextDemo };