1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//! Emoji contants used by `wasm-pack`.
//!
//! For the woefully unfamiliar:
//!
//! > Emoji are ideograms and smileys used in electronic messages and web
//! > pages. Emoji exist in various genres, including facial expressions, common
//! > objects, places and types of weather, and animals. They are much like
//! > emoticons, but emoji are actual pictures instead of typographics.
//!
//! -- https://en.wikipedia.org/wiki/Emoji

#![allow(missing_docs)]

use console::Emoji;

pub static TARGET: Emoji = Emoji("🎯  ", "");
pub static CYCLONE: Emoji = Emoji("πŸŒ€  ", "");
pub static FOLDER: Emoji = Emoji("πŸ“‚  ", "");
pub static MEMO: Emoji = Emoji("πŸ“  ", "");
pub static DOWN_ARROW: Emoji = Emoji("⬇️  ", "");
pub static RUNNER: Emoji = Emoji("πŸƒβ€β™€οΈ  ", "");
pub static SPARKLE: Emoji = Emoji("✨  ", ":-)");
pub static PACKAGE: Emoji = Emoji("πŸ“¦  ", ":-)");
pub static WARN: Emoji = Emoji("⚠️  ", ":-)");
pub static DANCERS: Emoji = Emoji("πŸ‘―  ", "");
pub static ERROR: Emoji = Emoji("β›”  ", "");
pub static INFO: Emoji = Emoji("ℹ️  ", "");
pub static WRENCH: Emoji = Emoji("πŸ”§  ", "");
pub static CRAB: Emoji = Emoji("πŸ¦€  ", "");