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/radio_tower.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn RadioTower(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M4.9 16.1C1 12.2 1 5.8 4.9 1.9")]),
path(&[attr("d", "M7.8 4.7a6.14 6.14 0 0 0-.8 7.5")]),
circle(&[attr("cx", "12"), attr("cy", "9"), attr("r", "2")]),
path(&[attr("d", "M16.2 4.8c2 2 2.26 5.11.8 7.47")]),
path(&[attr("d", "M19.1 1.9a9.96 9.96 0 0 1 0 14.1")]),
path(&[attr("d", "M9.5 18h5")]),
path(&[attr("d", "m8 22 4-11 4 11")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}