Commited dependencies

This commit is contained in:
2018-04-02 14:09:29 +01:00
parent 08be7ec383
commit 080d61728c
317 changed files with 156388 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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)(">")
)