use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, icon_element, icon_template, path, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/triangle_dashed.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn TriangleDashed(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M10.17 4.193a2 2 0 0 1 3.666.013")]),
path(&[attr("d", "M14 21h2")]),
path(&[attr("d", "m15.874 7.743 1 1.732")]),
path(&[attr("d", "m18.849 12.952 1 1.732")]),
path(&[attr("d", "M21.824 18.18a2 2 0 0 1-1.835 2.824")]),
path(&[attr("d", "M4.024 21a2 2 0 0 1-1.839-2.839")]),
path(&[attr("d", "m5.136 12.952-1 1.732")]),
path(&[attr("d", "M8 21h2")]),
path(&[attr("d", "m8.102 7.743-1 1.732")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}