use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn SquareTerminal(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - SquareTerminal"</title>
<path d="m7 11 2-2-2-2" />
<path d="M11 13h4" />
<rect width="18" height="18" x="3" y="3" rx="2" ry="2" />
</SvgIcon>
}
}