Components
Loading preview...
An input field that morphs between different states with smooth animations.
npx shadcn@latest add https://21st.dev/r/0xUrvish/morphing-input"use client";
import MorphingInput from "@/components/ui/morphing-input";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<MorphingInput />
</div>
);
}