use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, icon_element, icon_template, path, rect, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/spray_can.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn SprayCan(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M3 3h.01")]),
path(&[attr("d", "M7 5h.01")]),
path(&[attr("d", "M11 7h.01")]),
path(&[attr("d", "M3 7h.01")]),
path(&[attr("d", "M7 9h.01")]),
path(&[attr("d", "M3 11h.01")]),
rect(&[
attr("height", "4"),
attr("width", "4"),
attr("x", "15"),
attr("y", "5"),
]),
path(&[attr(
"d",
"m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2",
)]),
path(&[attr("d", "m13 14 8-2")]),
path(&[attr("d", "m13 19 8-2")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}