Skip to content

Commit

Permalink
Remove spaces after emoji spinners
Browse files Browse the repository at this point in the history
  • Loading branch information
meowgorithm committed Nov 11, 2020
1 parent e621957 commit 9cb8e8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spinner/spinner.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

Expand Down

0 comments on commit 9cb8e8d

Please sign in to comment.