import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger} from "doplo/dialog"
<Dialog>
<DialogTrigger> <Button>Click to open Dialog</Button></DialogTrigger>
<DialogOverlay>
<DialogContent>
<DialogHeader>
<DialogTitle>Title</DialogTitle>
<DialogDescription>Description for the dialog</DialogDescription>
</DialogHeader>
<div className="flex flex-col gap-2">
<Input placeholder="Type here..."/>
<Textarea placeholder="Type here..."/>
</div>
<Button className="w-full">Submit</Button>
<DialogCloser>
<X className="text-neutral-600"/>
</DialogCloser>
</DialogContent>
</DialogOverlay>
</Dialog>