icons 0.4.5

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
use dioxus::prelude::*;

use super::SvgIcon;

#[component]
pub fn Shredder(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - Shredder" }
            path { d: "M10 22v-5" }
            path { d: "M14 19v-2" }
            path { d: "M14 2v4a2 2 0 0 0 2 2h4" }
            path { d: "M18 20v-3" }
            path { d: "M2 13h20" }
            path { d: "M20 13V7l-5-5H6a2 2 0 0 0-2 2v9" }
            path { d: "M6 20v-3" }
        }
    }
}