use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn SquareSlash(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - SquareSlash" }
rect { width: "18", height: "18", x: "2", y: "3", rx: "2" }
line { x1: "9", x2: "15", y1: "15", y2: "9" }
}
}
}