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) {
}