Aspekt logoAspekt UI

Dialog is used for focused decisions and short modal workflows.

tsx
import { Dialog, DialogContent, DialogTrigger } from "@/components/aspekt/dialog";
<Dialog>  <DialogTrigger>Archive project</DialogTrigger>  <DialogContent>    <DialogHeader>      <DialogTitle>Archive project?</DialogTitle>      <DialogDescription>        Move Q3 launch plan out of active work. You can restore it later        from the archive.      </DialogDescription>    </DialogHeader>    <div className="rounded-lg border p-3 text-sm">      12 open tasks and 4 milestones will be hidden from dashboards.    </div>    <DialogFooter>      <DialogClose>Keep project</DialogClose>      <Button color="destructive">Archive project</Button>    </DialogFooter>  </DialogContent></Dialog>