icons 0.2.7

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

use super::SvgIcon;

#[component]
pub fn Slack(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - Slack" }
            rect { width: "3", height: "8", x: "1.5", y: "2", rx: "1.5" }
            path { d: "M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5" }
            rect { width: "3", height: "8", x: "1.5", y: "14", rx: "1.5" }
            path { d: "M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5" }
            rect { width: "8", height: "3", x: "1.5", y: "13", rx: "1.5" }
            path { d: "M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5" }
            rect { width: "8", height: "3", x: "1.5", y: "8", rx: "1.5" }
            path { d: "M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5" }
        }
    }
}