icons 0.2.7

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

use super::SvgIcon;

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

            <path d="M12 15v-3.014" />
            <path d="M16 15v-3.014" />
            <path d="M20 6H4" />
            <path d="M20 8V4" />
            <path d="M4 8V4" />
            <path d="M8 15v-3.014" />
            <rect x="3" y="12" width="18" height="7" rx="1" />
        </SvgIcon>
    }
}