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/scissors_line_dashed.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn ScissorsLineDashed(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M5.42 9.42 8 12")]),
circle(&[attr("cx", "4"), attr("cy", "8"), attr("r", "2")]),
path(&[attr("d", "m14 6-8.58 8.58")]),
circle(&[attr("cx", "4"), attr("cy", "16"), attr("r", "2")]),
path(&[attr("d", "M10.8 14.8 14 18")]),
path(&[attr("d", "M16 12h-2")]),
path(&[attr("d", "M22 12h-2")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}