use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn AppWindow(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - AppWindow" }
rect { width: "20", height: "16", x: "2", y: "4", rx: "2" }
path { d: "M10 4v4" }
path { d: "M2 8h20" }
path { d: "M6 4v4" }
}
}
}