icons 0.4.2

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 ChartNoAxesCombined(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - ChartNoAxesCombined" }
            path { d: "M12 16v5" }
            path { d: "M16 14v7" }
            path { d: "M20 10v11" }
            path { d: "m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15" }
            path { d: "M4 18v3" }
            path { d: "M8 14v7" }
        }
    }
}