11 lines
233 B
Go
11 lines
233 B
Go
|
package components
|
||
|
|
||
|
type FormHref struct {
|
||
|
Text string
|
||
|
Link string
|
||
|
Icon string
|
||
|
IsButton bool
|
||
|
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, link
|
||
|
IsDisabled bool
|
||
|
}
|