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