8 lines
194 B
Go
8 lines
194 B
Go
|
package components
|
||
|
|
||
|
type ContentBadge struct {
|
||
|
Text string
|
||
|
TypeClass string // type primary, secondary, success, danger, warning, info, light, dark, (default secondary)
|
||
|
IsOutline bool
|
||
|
}
|