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