use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, circle, icon_element, icon_template, line, rect, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/square_scissors.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn SquareScissors(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
rect(&[
attr("height", "18"),
attr("rx", "2"),
attr("width", "18"),
attr("x", "3"),
attr("y", "3"),
]),
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)
}