package blocks type InputState int const ( InputStateDefault InputState = iota InputStateError InputStateSuccess ) templ TextInput(state InputState, label string, placeholder string) { switch (state) { case InputStateDefault: