1
0
mirror of https://github.com/strongdm/comply synced 2024-08-26 09:16:47 +00:00
comply/vendor/github.com/manifoldco/promptui/styles.go

13 lines
278 B
Go
Raw Normal View History

2018-05-11 20:25:46 +00:00
// +build !windows
package promptui
// Icons used for displaying prompts or status
var (
IconInitial = Styler(FGBlue)("?")
IconGood = Styler(FGGreen)("✔")
IconWarn = Styler(FGYellow)("⚠")
IconBad = Styler(FGRed)("✗")
IconSelect = Styler(FGBold)("▸")
)