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