use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, ellipse, icon_element, icon_template, path, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/drum.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Drum(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "m2 2 8 8")]),
path(&[attr("d", "m22 2-8 8")]),
ellipse(&[
attr("cx", "12"),
attr("cy", "9"),
attr("rx", "10"),
attr("ry", "5"),
]),
path(&[attr("d", "M7 13.4v7.9")]),
path(&[attr("d", "M12 14v8")]),
path(&[attr("d", "M17 13.4v7.9")]),
path(&[attr("d", "M2 9v8a10 5 0 0 0 20 0V9")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}