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