use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, circle, icon_element, icon_template, path, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/radar.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Radar(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M19.07 4.93A10 10 0 0 0 6.99 3.34")]),
path(&[attr("d", "M4 6h.01")]),
path(&[attr("d", "M2.29 9.62A10 10 0 1 0 21.31 8.35")]),
path(&[attr("d", "M16.24 7.76A6 6 0 1 0 8.23 16.67")]),
path(&[attr("d", "M12 18h.01")]),
path(&[attr("d", "M17.99 11.66A6 6 0 0 1 15.77 16.67")]),
circle(&[attr("cx", "12"), attr("cy", "12"), attr("r", "2")]),
path(&[attr("d", "m13.41 10.59 5.66-5.66")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}