use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, icon_element, icon_template, path, rect, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/sandwich.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Sandwich(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr(
"d",
"m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777",
)]),
path(&[attr("d", "M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25")]),
path(&[attr("d", "M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9")]),
path(&[attr("d", "m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2")]),
rect(&[
attr("height", "4"),
attr("rx", "1"),
attr("width", "20"),
attr("x", "2"),
attr("y", "11"),
]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}