dreamstack/registry/components/input.ds

11 lines
375 B
Text
Raw Permalink Normal View History

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