use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, circle, icon_element, icon_template, path, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/circle_dot_dashed.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn CircleDotDashed(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M10.1 2.18a9.93 9.93 0 0 1 3.8 0")]),
path(&[attr("d", "M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7")]),
path(&[attr("d", "M21.82 10.1a9.93 9.93 0 0 1 0 3.8")]),
path(&[attr("d", "M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69")]),
path(&[attr("d", "M13.9 21.82a9.94 9.94 0 0 1-3.8 0")]),
path(&[attr("d", "M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7")]),
path(&[attr("d", "M2.18 13.9a9.93 9.93 0 0 1 0-3.8")]),
path(&[attr("d", "M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69")]),
circle(&[attr("cx", "12"), attr("cy", "12"), attr("r", "1")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}