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