core/template/components/form_button.go

11 lines
155 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
Link string
Icon string
IsSubmit bool
IsPrimary bool
IsDisabled bool
}