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/palette.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Palette(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr(
"d",
"M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z",
)]),
circle(&[
attr("cx", "13.5"),
attr("cy", "6.5"),
attr("fill", "currentColor"),
attr("r", ".5"),
]),
circle(&[
attr("cx", "17.5"),
attr("cy", "10.5"),
attr("fill", "currentColor"),
attr("r", ".5"),
]),
circle(&[
attr("cx", "6.5"),
attr("cy", "12.5"),
attr("fill", "currentColor"),
attr("r", ".5"),
]),
circle(&[
attr("cx", "8.5"),
attr("cy", "7.5"),
attr("fill", "currentColor"),
attr("r", ".5"),
]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}