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/image_off.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn ImageOff(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
line(&[
attr("x1", "2"),
attr("x2", "22"),
attr("y1", "2"),
attr("y2", "22"),
]),
path(&[attr("d", "M10.41 10.41a2 2 0 1 1-2.83-2.83")]),
line(&[
attr("x1", "13.5"),
attr("x2", "6"),
attr("y1", "13.5"),
attr("y2", "21"),
]),
line(&[
attr("x1", "18"),
attr("x2", "21"),
attr("y1", "12"),
attr("y2", "15"),
]),
path(&[attr(
"d",
"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59",
)]),
path(&[attr("d", "M21 15V5a2 2 0 0 0-2-2H9")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}