use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CircleArrowOutUpLeft(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CircleArrowOutUpLeft" }
path { d: "M2 8V2h6" }
path { d: "m2 2 10 10" }
path { d: "M12 2A10 10 0 1 1 2 12" }
}
}
}