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