use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, icon_element, icon_template, path, rect, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/drone.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Drone(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M10 10 7 7")]),
path(&[attr("d", "m10 14-3 3")]),
path(&[attr("d", "m14 10 3-3")]),
path(&[attr("d", "m14 14 3 3")]),
path(&[attr("d", "M14.205 4.139a4 4 0 1 1 5.439 5.863")]),
path(&[attr("d", "M19.637 14a4 4 0 1 1-5.432 5.868")]),
path(&[attr("d", "M4.367 10a4 4 0 1 1 5.438-5.862")]),
path(&[attr("d", "M9.795 19.862a4 4 0 1 1-5.429-5.873")]),
rect(&[
attr("height", "8"),
attr("rx", "1"),
attr("width", "4"),
attr("x", "10"),
attr("y", "8"),
]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}