Skip to content

Commit

Permalink
Put emoji in alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanrainer committed Jul 1, 2024
1 parent 8decf9f commit fb12114
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions crates/rover-std/src/emoji.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,47 +5,47 @@ use console::Emoji as ConsoleEmoji;
#[derive(Debug, Copy, Clone)]
pub enum Emoji {
Action,
Compose,
Hourglass,
Person,
Web,
Listen,
Memo,
New,
Note,
Person,
Reload,
Rocket,
Skull,
Sparkle,
Start,
Stop,
Success,
Watch,
Reload,
Listen,
Start,
New,
Sparkle,
Skull,
Compose,
Warn,
Memo,
Watch,
Web,
}

impl Emoji {
fn get(&self) -> &str {
use Emoji::*;
match self {
Action => "🎬 ",
Compose => "🎢 ",
Hourglass => "βŒ› ",
Person => "πŸ§‘ ",
Web => "πŸ•ΈοΈ ",
Listen => "πŸ‘‚ ",
Memo => "πŸ“ ",
New => "🐀 ",
Note => "πŸ—’οΈ ",
Person => "πŸ§‘ ",
Reload => "πŸ”ƒ ",
Rocket => "πŸš€ ",
Skull => "πŸ’€ ",
Sparkle => "✨ ",
Start => "πŸ›« ",
Stop => "βœ‹ ",
Success => "βœ… ",
Watch => "πŸ‘€ ",
Reload => "πŸ”ƒ ",
Listen => "πŸ‘‚ ",
Start => "πŸ›« ",
New => "🐀 ",
Sparkle => "✨ ",
Skull => "πŸ’€ ",
Compose => "🎢 ",
Warn => "⚠️ ",
Memo => "πŸ“ ",
Watch => "πŸ‘€ ",
Web => "πŸ•ΈοΈ ",
}
}
}
Expand Down

0 comments on commit fb12114

Please sign in to comment.