use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn GalleryVertical(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - GalleryVertical" }
path { d: "M3 2h18" }
<rect width="18" height="12" x="3" y="6" rx="2" />
path { d: "M3 22h18" }
}
}
}