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