Command Palette

Search for a command to run...

11Twitter
Dialog
A pop-up layered above the application window or dialog, which makes the background content inert.

Installation

pnpm dlx shadcn@latest add "https://moleculeui.design/r/dialog"

Usage

import {
  Dialog,
  DialogTrigger,
  DialogContent,
  DialogHeader,
  DialogTitle,
  DialogDescription,
} from "@/components/molecule-ui/dialog"
<Dialog>
  <DialogTrigger>Open</DialogTrigger>
  <DialogContent>
    <DialogHeader>
      <DialogTitle>Are you sure, you want to delete?</DialogTitle>
      <DialogDescription>This will permanently delete data associated to the customer. </DialogDescription>
    </DialogHeader>
  </DialogContent>
</Dialog>

Examples

Custom close button

Without animation