icons 0.4.1

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 Tablets(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - Tablets" }
            circle { cx: "7", cy: "7", r: "5" }
            circle { cx: "17", cy: "17", r: "5" }
            path { d: "M12 17h10" }
            path { d: "m3.46 10.54 7.08-7.08" }
        }
    }
}