import { Input } from "./input"; export default function InputDemo() { return ( <div className="flex items-center justify-center gap-3 p-8 flex-col w-full max-w-sm"> <Input type="text" placeholder="Enter your name" /> <Input type="email" placeholder="Enter your email" /> <Input type="password" placeholder="Enter your password" /> </div> ); }