use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn CornerRightUp(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - CornerRightUp"</title>
<path d="m10 9 5-5 5 5" />
<path d="M4 20h7a4 4 0 0 0 4-4V4" />
</SvgIcon>
}
}