20 lines
335 B
Go
20 lines
335 B
Go
|
package components
|
||
|
|
||
|
type ContentList struct {
|
||
|
Items []ContentListItem
|
||
|
}
|
||
|
|
||
|
type ContentListItem struct {
|
||
|
Text string
|
||
|
Description string
|
||
|
EndElement string
|
||
|
//Link string
|
||
|
TypeClass string // primary, secondary, success, danger, warning, info, light, dark
|
||
|
IsDisabled bool
|
||
|
//IsActive bool
|
||
|
}
|
||
|
|
||
|
//link
|
||
|
//border
|
||
|
// badge
|