icons 0.4.5

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use dioxus::prelude::*;

use super::SvgIcon;

#[component]
pub fn BanknoteArrowDown(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - BanknoteArrowDown" }
            path { d: "M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5" }
            path { d: "m16 19 3 3 3-3" }
            path { d: "M18 12h.01" }
            path { d: "M19 16v6" }
            path { d: "M6 12h.01" }
            circle { cx: "12", cy: "12", r: "2" }
        }
    }
}