1
0
mirror of https://github.com/strongdm/comply synced 2024-07-05 08:11:48 +00:00
comply/vendor/github.com/manifoldco/promptui/styles_windows.go
2018-05-15 14:13:11 -07:00

11 lines
250 B
Go

package promptui
// Icons used for displaying prompts or status
var (
IconInitial = Styler(FGBlue)("?")
IconGood = Styler(FGGreen)("v")
IconWarn = Styler(FGYellow)("!")
IconBad = Styler(FGRed)("x")
IconSelect = Styler(FGBold)(">")
)