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

13 lines
278 B
Go
Raw Normal View History

2018-05-15 21:13:11 +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)("▸")
)