1
0
Fork 0
forked from goffee/core
core/template/components/content_href.go
2024-10-29 10:00:24 -05:00

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
}