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