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