use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CornerLeftUp(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CornerLeftUp" }
path { d: "M14 9 9 4 4 9" }
path { d: "M20 20h-7a4 4 0 0 1-4-4V4" }
}
}
}