1
0
Fork 0
forked from goffee/core
core/template/components/form_button.go
2024-12-06 04:55:43 -05:00

11 lines
271 B
Go

package components
type FormButton struct {
ID string
Value string
Text string
Icon string
IsSubmit bool
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, link, outline-primary
IsDisabled bool
}