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