icons 0.2.14

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

use super::SvgIcon;

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

            <path d="m17 3-5 5-5-5h10" />
            <path d="m17 21-5-5-5 5h10" />
            <path d="M4 12H2" />
            <path d="M10 12H8" />
            <path d="M16 12h-2" />
            <path d="M22 12h-2" />
        </SvgIcon>
    }
}