use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, icon_element, icon_template, path, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/fence.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Fence(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z")]),
path(&[attr("d", "M6 8h4")]),
path(&[attr("d", "M6 18h4")]),
path(&[attr("d", "m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z")]),
path(&[attr("d", "M14 8h4")]),
path(&[attr("d", "M14 18h4")]),
path(&[attr("d", "m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}