use dioxus::prelude::*;
use super::SvgIcon;
#[component]
pub fn CircleArrowRight(class: Option<String>) -> Element {
rsx! {
SvgIcon { class,
title { "Rust UI Icons - CircleArrowRight" }
<circle cx="12" cy="12" r="10" />
path { d: "m12 16 4-4-4-4" }
path { d: "M8 12h8" }
}
}
}