forked from goffee/core
10 lines
151 B
Go
10 lines
151 B
Go
package components
|
|
|
|
type Button struct {
|
|
Text string
|
|
Link string
|
|
Icon string
|
|
IsSubmit bool
|
|
IsPrimary bool
|
|
IsDisabled bool
|
|
}
|