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