-- DreamStack Dialog Component -- Modal with overlay, title, and close button import { Button } from "./button" export component Dialog(title, open, onClose) = column [ text title { variant: "title" } Button { label: "Close", onClick: onClose } ] { variant: "dialog" }