9 lines
248 B
Text
9 lines
248 B
Text
|
|
-- DreamStack Input Component
|
||
|
|
-- Text input with label, placeholder, and error state
|
||
|
|
|
||
|
|
export component Input(value, placeholder, label) =
|
||
|
|
column [
|
||
|
|
text label { class: "ds-input-label" }
|
||
|
|
input { bind: value, placeholder: placeholder }
|
||
|
|
]
|