core/template/components/button.go
2024-09-24 16:12:17 -05:00

10 lines
151 B
Go

package components
type Button struct {
Text string
Link string
Icon string
IsSubmit bool
IsPrimary bool
IsDisabled bool
}