GitHub

Dialog

A component that displays a dialog.

Installation#

Usage#

import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "~/components/ui/dialog";
<Dialog>
<DialogTrigger>Open</DialogTrigger>
<DialogContent>
<DialogHeader>
<DialogTitle>Dialog Title</DialogTitle>
<DialogDescription>This is a description of the dialog.</DialogDescription>
</DialogHeader>
<p>This is the content of the dialog.</p>
</DialogContent>
</DialogContent>