use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CornerDownRight(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CornerDownRight" }
path { d: "m15 10 5 5-5 5" }
path { d: "M4 4v7a4 4 0 0 0 4 4h12" }
}
}
}