core/template/components/form_button.go

10 lines
233 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-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
}