aboutsummaryrefslogtreecommitdiff
path: root/src/View/Button.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/View/Button.ml')
-rw-r--r--src/View/Button.ml18
1 files changed, 7 insertions, 11 deletions
diff --git a/src/View/Button.ml b/src/View/Button.ml
index 31fa1b0..c325fdd 100644
--- a/src/View/Button.ml
+++ b/src/View/Button.ml
@@ -1,13 +1,9 @@
-let action on_click label =
+let action attrs content =
H.button
- [| HA.class_ "g-Button__Action"
- ; HE.on_click on_click
- |]
- [| H.text label |]
+ (Js.Array.concat attrs [| HA.class_ "g-Button__Action" |])
+ content
-let danger on_click label =
- H.button
- [| HA.class_ "g-Button__Danger"
- ; HE.on_click on_click
- |]
- [| H.text label |]
+let cancel attrs content =
+ H.button
+ (Js.Array.concat attrs [| HA.class_ "g-Button__Cancel" |])
+ content