forked from goffee/core
11 lines
286 B
Go
11 lines
286 B
Go
package components
|
|
|
|
type ContentHref struct {
|
|
Text string
|
|
Link string
|
|
Target string // _blank _parent _self _top
|
|
Icon string
|
|
IsButton bool
|
|
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, link
|
|
IsDisabled bool
|
|
}
|