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_backup.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn DatabaseBackup(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 12a9 3 0 0 0 5 2.69")]),
path(&[attr("d", "M21 9.3V5")]),
path(&[attr("d", "M3 5v14a9 3 0 0 0 6.47 2.88")]),
path(&[attr("d", "M12 12v4h4")]),
path(&[attr(
"d",
"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16",
)]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}