Remove spaces after emoji spinners

This commit is contained in:
Christian Rocha 2020-11-11 14:19:54 -05:00 committed by Christian Rocha
parent e6219572e5
commit 9cb8e8d90a

View File

@ -42,15 +42,15 @@ var (
FPS: time.Second / 7,
}
Globe = Spinner{
Frames: []string{"🌍 ", "🌎 ", "🌏 "},
Frames: []string{"🌍", "🌎", "🌏"},
FPS: time.Second / 4,
}
Moon = Spinner{
Frames: []string{"🌑 ", "🌒 ", "🌓 ", "🌔 ", "🌕 ", "🌖 ", "🌗 ", "🌘 "},
Frames: []string{"🌑", "🌒", "🌓", "🌔", "🌕", "🌖", "🌗", "🌘"},
FPS: time.Second / 8,
}
Monkey = Spinner{
Frames: []string{"🙈 ", "🙉 ", "🙊 "},
Frames: []string{"🙈", "🙉", "🙊"},
FPS: time.Second / 3,
}