pub static LOVE_YOU_GESTURE: With<Tone, Emoji>
Expand description

love-you gesture 🀟

Since E5.0

Examples

use emojic::flat::LOVE_YOU_GESTURE;
use emojic::Tone;
use emojic::Gender;
use emojic::Hair;
use emojic::Pair;

println!("{}", LOVE_YOU_GESTURE); // 🀟 (`U+1F91F`)
println!("{}", LOVE_YOU_GESTURE.tone(Tone::Light)); // 🀟🏻 (`U+1F91F U+1F3FB`)
println!("{}", LOVE_YOU_GESTURE.tone(Tone::MediumLight)); // 🀟🏼 (`U+1F91F U+1F3FC`)
println!("{}", LOVE_YOU_GESTURE.tone(Tone::Medium)); // 🀟🏽 (`U+1F91F U+1F3FD`)
println!("{}", LOVE_YOU_GESTURE.tone(Tone::MediumDark)); // 🀟🏾 (`U+1F91F U+1F3FE`)
println!("{}", LOVE_YOU_GESTURE.tone(Tone::Dark)); // 🀟🏿 (`U+1F91F U+1F3FF`)