1
0
Fork 0
forked from goffee/core
core/template/components/form_button.go
2024-11-02 20:23:48 -05:00

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
}