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/brain_circuit.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn BrainCircuit(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr(
"d",
"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",
)]),
path(&[attr("d", "M9 13a4.5 4.5 0 0 0 3-4")]),
path(&[attr("d", "M6.003 5.125A3 3 0 0 0 6.401 6.5")]),
path(&[attr("d", "M3.477 10.896a4 4 0 0 1 .585-.396")]),
path(&[attr("d", "M6 18a4 4 0 0 1-1.967-.516")]),
path(&[attr("d", "M12 13h4")]),
path(&[attr("d", "M12 18h6a2 2 0 0 1 2 2v1")]),
path(&[attr("d", "M12 8h8")]),
path(&[attr("d", "M16 8V5a2 2 0 0 1 2-2")]),
circle(&[attr("cx", "16"), attr("cy", "13"), attr("r", ".5")]),
circle(&[attr("cx", "18"), attr("cy", "3"), attr("r", ".5")]),
circle(&[attr("cx", "20"), attr("cy", "21"), attr("r", ".5")]),
circle(&[attr("cx", "20"), attr("cy", "8"), attr("r", ".5")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}