import { Drawer, DrawerContent, DrawerHeader, DrawerBody, DrawerFooter, Button, useDisclosure, Input, Checkbox, Link, } from "@nextui-org/react"; export const MailIcon = (props) => { return ( ); }; export const LockIcon = (props) => { return ( ); }; export default function App() { const {isOpen, onOpen, onOpenChange} = useDisclosure(); return ( <> Open Drawer {(onClose) => ( <> Log in } label="Email" placeholder="Enter your email" variant="bordered" /> } label="Password" placeholder="Enter your password" type="password" variant="bordered" /> Remember me Forgot password? Close Sign in > )} > ); }