unicode-icons 2.1.2

(1869+) unicode icons in rust
Documentation
//! Component

use crate::Emoticon;

/// red_hair 🦰 (U+1F9B0)
pub fn red_hair() -> Emoticon {
    Emoticon("\u{1F9B0}".to_string())
}

/// curly_hair 🦱 (U+1F9B1)
pub fn curly_hair() -> Emoticon {
    Emoticon("\u{1F9B1}".to_string())
}

/// white_hair 🦳 (U+1F9B3)
pub fn white_hair() -> Emoticon {
    Emoticon("\u{1F9B3}".to_string())
}

/// bald 🦲 (U+1F9B2)
pub fn bald() -> Emoticon {
    Emoticon("\u{1F9B2}".to_string())
}