package base import "fmt" type TextareaProps struct { ID string Label string Name string Placeholder string Value string Description string Err string Class string Size string Required bool Rows int Attrs templ.Attributes } templ Textarea(props TextareaProps) {
if props.Label != "" { { props.Label } } if props.Description != "" {
{ props.Description }
}
{ props.Err }
}