package components type InputProps struct { Label string Name string Type string Placeholder string Value string Error string } templ Input(props InputProps) {
if props.Error != "" {

{ props.Error }

}
}