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" }
}
}
}