use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CornerRightUp(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CornerRightUp" }
path { d: "m10 9 5-5 5 5" }
path { d: "M4 20h7a4 4 0 0 0 4-4V4" }
}
}
}