icons 0.2.11

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

use super::SvgIcon;

#[component]
pub fn Umbrella(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - Umbrella" }
            path { d: "M22 12a10.06 10.06 1 0 0-20 0Z" }
            path { d: "M12 12v8a2 2 0 0 0 4 0" }
            path { d: "M12 2v1" }
        }
    }
}