core/template/components/button.go

11 lines
151 B
Go
Raw Normal View History

2024-09-24 17:12:17 -04:00
package components
type Button struct {
Text string
Link string
Icon string
IsSubmit bool
IsPrimary bool
IsDisabled bool
}