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