use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn CornerLeftUp(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - CornerLeftUp"</title>
<path d="M14 9 9 4 4 9" />
<path d="M20 20h-7a4 4 0 0 1-4-4V4" />
</SvgIcon>
}
}