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