use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, circle, icon_element, icon_template, line, path, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/square_bottom_dashed_scissors.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn SquareBottomDashedScissors(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
line(&[
attr("x1", "5"),
attr("x2", "19"),
attr("y1", "3"),
attr("y2", "3"),
]),
line(&[
attr("x1", "3"),
attr("x2", "3"),
attr("y1", "5"),
attr("y2", "19"),
]),
line(&[
attr("x1", "21"),
attr("x2", "21"),
attr("y1", "5"),
attr("y2", "19"),
]),
line(&[
attr("x1", "9"),
attr("x2", "10"),
attr("y1", "21"),
attr("y2", "21"),
]),
line(&[
attr("x1", "14"),
attr("x2", "15"),
attr("y1", "21"),
attr("y2", "21"),
]),
path(&[attr("d", "M 3 5 A2 2 0 0 1 5 3")]),
path(&[attr("d", "M 19 3 A2 2 0 0 1 21 5")]),
path(&[attr("d", "M 5 21 A2 2 0 0 1 3 19")]),
path(&[attr("d", "M 21 19 A2 2 0 0 1 19 21")]),
circle(&[attr("cx", "8.5"), attr("cy", "8.5"), attr("r", "1.5")]),
line(&[
attr("x1", "9.56066"),
attr("x2", "12"),
attr("y1", "9.56066"),
attr("y2", "12"),
]),
line(&[
attr("x1", "17"),
attr("x2", "14.82"),
attr("y1", "17"),
attr("y2", "14.82"),
]),
circle(&[attr("cx", "8.5"), attr("cy", "15.5"), attr("r", "1.5")]),
line(&[
attr("x1", "9.56066"),
attr("x2", "17"),
attr("y1", "14.43934"),
attr("y2", "7"),
]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}