use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, icon_element, icon_template, path, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/circle_fading_plus.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn CircleFadingPlus(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M12 2a10 10 0 0 1 7.38 16.75")]),
path(&[attr("d", "M12 8v8")]),
path(&[attr("d", "M16 12H8")]),
path(&[attr("d", "M2.5 8.875a10 10 0 0 0-.5 3")]),
path(&[attr("d", "M2.83 16a10 10 0 0 0 2.43 3.4")]),
path(&[attr("d", "M4.636 5.235a10 10 0 0 1 .891-.857")]),
path(&[attr("d", "M8.644 21.42a10 10 0 0 0 7.631-.38")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}