The Dialog component consists of several sub-components:
Dialog - The main container (root)
DialogTrigger - Button that opens the dialog
DialogContent - The modal content container
DialogHeader - Header section for title and description
DialogTitle - The dialog title
DialogDescription - Additional description text
DialogFooter - Footer section for actions
DialogClose - Element that closes the dialog when clicked
Basic Usage
Code
<Dialog> <DialogTrigger asChild> <Button variant="outline">Open Dialog</Button> </DialogTrigger> <DialogContent> <DialogHeader> <DialogTitle>Are you absolutely sure?</DialogTitle> <DialogDescription> This action cannot be undone. This will permanently delete your account and remove your data from our servers. </DialogDescription> </DialogHeader> </DialogContent></Dialog>