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