6 lines
204 B
Text
6 lines
204 B
Text
|
|
-- DreamStack Button Component
|
||
|
|
-- Variants: primary (default), secondary, ghost, destructive
|
||
|
|
|
||
|
|
export component Button(label, variant, onClick) =
|
||
|
|
button label { click: onClick, class: "ds-btn-primary" }
|