core/template/components/form_dropdown.go

16 lines
241 B
Go
Raw Normal View History

package components
type FormDropdown struct {
Label string
TypeClass string
IsDisabled bool
Items []FormDropdownItem
}
type FormDropdownItem struct {
Text string
Link string
IsDisabled bool
IsActive bool
}