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

use super::SvgIcon;

#[component]
pub fn CalendarOff(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - CalendarOff" }
            path { d: "M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18" }
            path { d: "M21 15.5V6a2 2 0 0 0-2-2H9.5" }
            path { d: "M16 2v4" }
            path { d: "M3 10h7" }
            path { d: "M21 10h-5.5" }
            path { d: "m2 2 20 20" }
        }
    }
}