icons 0.2.11

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

use super::SvgIcon;

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

            <path d="M16 12H3" />
            <path d="M16 18H3" />
            <path d="M16 6H3" />
            <path d="M21 12h.01" />
            <path d="M21 18h.01" />
            <path d="M21 6h.01" />
        </SvgIcon>
    }
}