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/database_zap.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn DatabaseZap(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
ellipse(&[
attr("cx", "12"),
attr("cy", "5"),
attr("rx", "9"),
attr("ry", "3"),
]),
path(&[attr("d", "M3 5V19A9 3 0 0 0 15 21.84")]),
path(&[attr("d", "M21 5V8")]),
path(&[attr("d", "M21 12L18 17H22L19 22")]),
path(&[attr("d", "M3 12A9 3 0 0 0 14.59 14.87")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}