icons 0.2.7

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

use super::SvgIcon;

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