1
0
Fork 0
forked from goffee/core
core/template/components/content_dropdown.go
2024-12-08 08:52:35 -05:00

17 lines
383 B
Go

package components
type ContentDropdown struct {
ID string
Label string
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, link, outline-primary
IsDisabled bool
Items []ContentDropdownItem
}
type ContentDropdownItem struct {
Text string
Link string
ID string
IsDisabled bool
IsActive bool
}