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/train_front_tunnel.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn TrainFrontTunnel(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M2 22V12a10 10 0 1 1 20 0v10")]),
path(&[attr("d", "M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8")]),
path(&[attr("d", "M10 15h.01")]),
path(&[attr("d", "M14 15h.01")]),
path(&[attr(
"d",
"M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z",
)]),
path(&[attr("d", "m9 19-2 3")]),
path(&[attr("d", "m15 19 2 3")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}