icons 0.2.14

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
use dioxus::prelude::*;

use super::SvgIcon;

#[component]
pub fn UmbrellaOff(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - UmbrellaOff" }
            path { d: "M12 2v1" }
            path { d: "M15.5 21a1.85 1.85 0 0 1-3.5-1v-8H2a10 10 0 0 1 3.428-6.575" }
            path { d: "M17.5 12H22A10 10 0 0 0 9.004 3.455" }
            path { d: "m2 2 20 20" }
        }
    }
}