core/template/components/content_href.go

12 lines
286 B
Go
Raw Normal View History

package components
2024-10-15 17:07:18 -04:00
type ContentHref struct {
Text string
Link string
2024-10-29 11:00:24 -04:00
Target string // _blank _parent _self _top
Icon string
IsButton bool
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, link
IsDisabled bool
}