15 lines
241 B
Go
15 lines
241 B
Go
package components
|
|
|
|
type FormDropdown struct {
|
|
Label string
|
|
TypeClass string
|
|
IsDisabled bool
|
|
Items []FormDropdownItem
|
|
}
|
|
|
|
type FormDropdownItem struct {
|
|
Text string
|
|
Link string
|
|
IsDisabled bool
|
|
IsActive bool
|
|
}
|