use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, icon_element, icon_template, line, path, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/unlink.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Unlink(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr(
"d",
"m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71",
)]),
path(&[attr(
"d",
"m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71",
)]),
line(&[
attr("x1", "8"),
attr("x2", "8"),
attr("y1", "2"),
attr("y2", "5"),
]),
line(&[
attr("x1", "2"),
attr("x2", "5"),
attr("y1", "8"),
attr("y2", "8"),
]),
line(&[
attr("x1", "16"),
attr("x2", "16"),
attr("y1", "19"),
attr("y2", "22"),
]),
line(&[
attr("x1", "19"),
attr("x2", "22"),
attr("y1", "16"),
attr("y2", "16"),
]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}