use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, icon_element, icon_template, path, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/wand.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Wand(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M15 4V2")]),
path(&[attr("d", "M15 16v-2")]),
path(&[attr("d", "M8 9h2")]),
path(&[attr("d", "M20 9h2")]),
path(&[attr("d", "M17.8 11.8 19 13")]),
path(&[attr("d", "M15 9h.01")]),
path(&[attr("d", "M17.8 6.2 19 5")]),
path(&[attr("d", "m3 21 9-9")]),
path(&[attr("d", "M12.2 6.2 11 5")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}