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