Function unicode_icons::flags::triangular

source ·
pub fn triangular() -> String
Expand description

returns the Unicode cross mark icon: 🚩 (U+1F6A9)

Examples found in repository?
examples/main.rs (line 11)
3
4
5
6
7
8
9
10
11
12
13
fn main() {
    println!("Default Checkmark: {}", checkmarks::default()); // output: ✓

    // somehow I have rendering issues if there is no whitespace
    println!("White Heavy Checkmark: {} ", checkmarks::white_heavy()); // output: ✅

    println!("Rainbow Flag: {} ", flags::rainbow());
    println!("pirate_flag: {} ", flags::pirate());
    println!("pirate_flag: {} ", flags::triangular());
    println!("copyright default: {} ", copyright::default());
}