use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn LayoutGrid(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - LayoutGrid" }
<rect width="7" height="7" x="3" y="3" rx="1" />
<rect width="7" height="7" x="14" y="3" rx="1" />
<rect width="7" height="7" x="14" y="14" rx="1" />
<rect width="7" height="7" x="3" y="14" rx="1" />
}
}
}