mirror of
https://github.com/strongdm/comply
synced 2024-11-05 07:25:26 +00:00
13 lines
278 B
Go
13 lines
278 B
Go
// +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)("▸")
|
|
)
|