icons 0.2.7

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

use super::SvgIcon;

#[component]
pub fn Logs(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - Logs" }
            path { d: "M13 12h8" }
            path { d: "M13 18h8" }
            path { d: "M13 6h8" }
            path { d: "M3 12h1" }
            path { d: "M3 18h1" }
            path { d: "M3 6h1" }
            path { d: "M8 12h1" }
            path { d: "M8 18h1" }
            path { d: "M8 6h1" }
        }
    }
}