package ui type SelectOption struct { Value string Label string Disabled bool } type SelectProps struct { ID string Name string Placeholder string Value string Values []string Multiple bool Options []SelectOption Attrs templ.Attributes } templ Select(props SelectProps) {
}