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/tractor.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Tractor(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr(
"d",
"m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20",
)]),
path(&[attr("d", "M16 18h-5")]),
path(&[attr("d", "M18 5a1 1 0 0 0-1 1v5.573")]),
path(&[attr("d", "M3 4h8.129a1 1 0 0 1 .99.863L13 11.246")]),
path(&[attr("d", "M4 11V4")]),
path(&[attr("d", "M7 15h.01")]),
path(&[attr("d", "M8 10.1V4")]),
circle(&[attr("cx", "18"), attr("cy", "18"), attr("r", "2")]),
circle(&[attr("cx", "7"), attr("cy", "15"), attr("r", "5")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}