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