use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn AppWindow(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - AppWindow"</title>
<rect x="2" y="4" width="20" height="16" rx="2" />
<path d="M10 4v4" />
<path d="M2 8h20" />
<path d="M6 4v4" />
</SvgIcon>
}
}