use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn SquareSlash(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - SquareSlash"</title>
<rect width="18" height="18" x="3" y="3" rx="2" />
<line x1="9" x2="15" y1="15" y2="9" />
</SvgIcon>
}
}