forked from goffee/core
10 lines
252 B
Go
10 lines
252 B
Go
package components
|
|
|
|
type FormButton struct {
|
|
ID string
|
|
Text string
|
|
Icon string
|
|
IsSubmit bool
|
|
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, link, outline-primary
|
|
IsDisabled bool
|
|
}
|