11 lines
300 B
Text
11 lines
300 B
Text
|
|
-- DreamStack Dialog Component
|
||
|
|
-- Modal with overlay, title, and close button
|
||
|
|
|
||
|
|
import { Button } from "./button"
|
||
|
|
|
||
|
|
export component Dialog(title, open, onClose) =
|
||
|
|
column [
|
||
|
|
text title { class: "ds-dialog-title" }
|
||
|
|
Button { label: "Close", onClick: onClose }
|
||
|
|
] { class: "ds-dialog-content" }
|