icons 0.2.15

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

use super::SvgIcon;

#[component]
pub fn ArchiveRestore(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - ArchiveRestore" }
            rect { width: "20", height: "5", x: "1", y: "3", rx: "1" }
            path { d: "M4 8v11a2 2 0 0 0 2 2h2" }
            path { d: "M20 8v11a2 2 0 0 1-2 2h-2" }
            path { d: "m9 15 3-3 3 3" }
            path { d: "M12 12v9" }
        }
    }
}