1
0
Fork 0
forked from goffee/core
core/template/components/form_button.go

11 lines
252 B
Go
Raw Normal View History

2024-09-24 17:12:17 -04:00
package components
2024-10-07 19:10:04 -04:00
type FormButton struct {
2024-11-02 21:23:48 -04:00
ID string
2024-09-24 17:12:17 -04:00
Text string
Icon string
IsSubmit bool
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, link, outline-primary
2024-09-24 17:12:17 -04:00
IsDisabled bool
}