dreamstack/registry/components/dialog.ds

11 lines
283 B
Text
Raw Normal View History

-- 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" }