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/transgender.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Transgender(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M12 16v6")]),
path(&[attr("d", "M14 20h-4")]),
path(&[attr("d", "M18 2h4v4")]),
path(&[attr("d", "m2 2 7.17 7.17")]),
path(&[attr("d", "M2 5.355V2h3.357")]),
path(&[attr("d", "m22 2-7.17 7.17")]),
path(&[attr("d", "M8 5 5 8")]),
circle(&[attr("cx", "12"), attr("cy", "12"), attr("r", "4")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}