Components
npx shadcn@latest add https://21st.dev/r/muntasirszn/inputLoading preview...
import { Input } from "@/components/ui/input";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Input name="email" placeholder="john.doe@gmail.com" />
</div>
);
};
export { DemoOne };