use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn SquareArrowDownLeft(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - SquareArrowDownLeft" }
rect { width: "18", height: "18", x: "2", y: "3", rx: "2" }
path { d: "m16 8-8 8" }
path { d: "M16 16H8V8" }
}
}
}