use leptos::prelude::*;
use super::SvgIcon;
#[component]
pub fn CircleChevronRight(#[prop(into, optional)] class: Signal<String>) -> impl IntoView {
view! {
<SvgIcon class=class>
<title>"Rust UI Icons - CircleChevronRight"</title>
<circle cx="12" cy="12" r="10" />
<path d="m10 8 4 4-4 4" />
</SvgIcon>
}
}