use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, icon_element, icon_template, line, polyline, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/swords.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Swords(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
polyline(&[attr("points", "14.5 17.5 3 6 3 3 6 3 17.5 14.5")]),
line(&[
attr("x1", "13"),
attr("x2", "19"),
attr("y1", "19"),
attr("y2", "13"),
]),
line(&[
attr("x1", "16"),
attr("x2", "20"),
attr("y1", "16"),
attr("y2", "20"),
]),
line(&[
attr("x1", "19"),
attr("x2", "21"),
attr("y1", "21"),
attr("y2", "19"),
]),
polyline(&[attr("points", "14.5 6.5 18 3 21 3 21 6 17.5 9.5")]),
line(&[
attr("x1", "5"),
attr("x2", "9"),
attr("y1", "14"),
attr("y2", "18"),
]),
line(&[
attr("x1", "7"),
attr("x2", "4"),
attr("y1", "17"),
attr("y2", "20"),
]),
line(&[
attr("x1", "3"),
attr("x2", "5"),
attr("y1", "19"),
attr("y2", "21"),
]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}