icons 0.2.16

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use dioxus::prelude::*;

use super::SvgIcon;

#[component]
pub fn FlipVertical2(class: Option<String>) -> Element {
    rsx! {
        SvgIcon { class,
            title { "Rust UI Icons - FlipVertical2" }
            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" }
        }
    }
}