wasm_pack/
emoji.rs

1//! Emoji constants used by `wasm-pack`.
2//!
3//! For the woefully unfamiliar:
4//!
5//! > Emoji are ideograms and smileys used in electronic messages and web
6//! > pages. Emoji exist in various genres, including facial expressions, common
7//! > objects, places and types of weather, and animals. They are much like
8//! > emoticons, but emoji are actual pictures instead of typographics.
9//!
10//! -- https://en.wikipedia.org/wiki/Emoji
11
12#![allow(missing_docs)]
13
14use console::Emoji;
15
16pub static TARGET: Emoji = Emoji("đŸŽ¯  ", "");
17pub static CYCLONE: Emoji = Emoji("🌀  ", "");
18pub static FOLDER: Emoji = Emoji("📂  ", "");
19pub static MEMO: Emoji = Emoji("📝  ", "");
20pub static DOWN_ARROW: Emoji = Emoji("âŦ‡ī¸  ", "");
21pub static RUNNER: Emoji = Emoji("đŸƒâ€â™€ī¸  ", "");
22pub static SPARKLE: Emoji = Emoji("✨  ", ":-)");
23pub static PACKAGE: Emoji = Emoji("đŸ“Ļ  ", ":-)");
24pub static WARN: Emoji = Emoji("âš ī¸  ", ":-)");
25pub static DANCERS: Emoji = Emoji("đŸ‘¯  ", "");
26pub static ERROR: Emoji = Emoji("⛔  ", "");
27pub static INFO: Emoji = Emoji("â„šī¸  ", "");
28pub static WRENCH: Emoji = Emoji("🔧  ", "");
29pub static CRAB: Emoji = Emoji("đŸĻ€  ", "");
30pub static SHEEP: Emoji = Emoji("🐑 ", "");