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

use super::SvgIcon;

#[component]
pub fn Gavel(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - Gavel" }
            path { d: "m14.499 12.501-8.88 8.879a1 1 0 0 1-3.001-3L11.5 9.5" }
            path { d: "m16 16 6-6" }
            path { d: "m21 11-8-8" }
            path { d: "m8 8 6-6" }
            path { d: "m9 7 8 8" }
        }
    }
}