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/flower.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Flower(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
circle(&[attr("cx", "12"), attr("cy", "12"), attr("r", "3")]),
path(&[attr(
"d",
"M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5",
)]),
path(&[attr("d", "M12 7.5V9")]),
path(&[attr("d", "M7.5 12H9")]),
path(&[attr("d", "M16.5 12H15")]),
path(&[attr("d", "M12 16.5V15")]),
path(&[attr("d", "m8 8 1.88 1.88")]),
path(&[attr("d", "M14.12 9.88 16 8")]),
path(&[attr("d", "m8 16 1.88-1.88")]),
path(&[attr("d", "M14.12 14.12 16 16")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}