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_dashed.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn CircleDashed(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M10.1 2.182a10 10 0 0 1 3.8 0")]),
path(&[attr("d", "M13.9 21.818a10 10 0 0 1-3.8 0")]),
path(&[attr("d", "M17.609 3.721a10 10 0 0 1 2.69 2.7")]),
path(&[attr("d", "M2.182 13.9a10 10 0 0 1 0-3.8")]),
path(&[attr("d", "M20.279 17.609a10 10 0 0 1-2.7 2.69")]),
path(&[attr("d", "M21.818 10.1a10 10 0 0 1 0 3.8")]),
path(&[attr("d", "M3.721 6.391a10 10 0 0 1 2.7-2.69")]),
path(&[attr("d", "M6.391 20.279a10 10 0 0 1-2.69-2.7")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}