use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn ArrowUpLeft(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - ArrowUpLeft"</title>
<path d="M7 17V7h10" />
<path d="M17 17 7 7" />
</SvgIcon>
}
}