icons 0.3.7

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

use super::SvgIcon;

#[component]
pub fn UnfoldHorizontal(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - UnfoldHorizontal" }
            path { d: "M16 12h6" }
            path { d: "M8 12H2" }
            path { d: "M12 2v2" }
            path { d: "M12 8v2" }
            path { d: "M12 14v2" }
            path { d: "M12 20v2" }
            path { d: "m19 15 3-3-3-3" }
            path { d: "m5 9-3 3 3 3" }
        }
    }
}