use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, circle, ellipse, icon_element, icon_template, path, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/database_search.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn DatabaseSearch(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M21 11.693V5")]),
path(&[attr("d", "m22 22-1.875-1.875")]),
path(&[attr("d", "M3 12a9 3 0 0 0 8.697 2.998")]),
path(&[attr("d", "M3 5v14a9 3 0 0 0 9.28 2.999")]),
circle(&[attr("cx", "18"), attr("cy", "18"), attr("r", "3")]),
ellipse(&[
attr("cx", "12"),
attr("cy", "5"),
attr("rx", "9"),
attr("ry", "3"),
]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}