16 lines
345 B
Go
16 lines
345 B
Go
|
package components
|
||
|
|
||
|
type ContentDropdown struct {
|
||
|
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
|
||
|
IsDisabled bool
|
||
|
IsActive bool
|
||
|
}
|