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/shrink.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Shrink(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "m15 15 6 6m-6-6v4.8m0-4.8h4.8")]),
path(&[attr("d", "M9 19.8V15m0 0H4.2M9 15l-6 6")]),
path(&[attr("d", "M15 4.2V9m0 0h4.8M15 9l6-6")]),
path(&[attr("d", "M9 4.2V9m0 0H4.2M9 9 3 3")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}