icons 0.2.10

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

use super::SvgIcon;

#[component]
pub fn UtilityPole(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
    view! {
        <SvgIcon class=class>
            <title>"Rust UI Icons - UtilityPole"</title>

            <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" />
        </SvgIcon>
    }
}