icons 0.2.7

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

use super::SvgIcon;

#[component]
pub fn UtilityPole(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - UtilityPole" }
            path { d: "M12 2v20" }
            path { d: "M2 5h20" }
            path { d: "M3 3v2" }
            path { d: "M7 3v2" }
            path { d: "M17 3v2" }
            path { d: "M21 3v2" }
            path { d: "m19 5-7 7-7-7" }
        }
    }
}