dreamstack/registry/components/input.ds

9 lines
241 B
Text
Raw Normal View History

-- DreamStack Input Component
-- Text input with label, placeholder, and error state
export component Input(value, placeholder, label) =
column [
text label { variant: "label" }
input { bind: value, placeholder: placeholder }
]