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/vibrate_off.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn VibrateOff(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
path(&[attr("d", "m2 8 2 2-2 2 2 2-2 2")]),
path(&[attr("d", "m22 8-2 2 2 2-2 2 2 2")]),
path(&[attr("d", "M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2")]),
path(&[attr("d", "M16 10.34V6c0-.55-.45-1-1-1h-4.34")]),
line(&[
attr("x1", "2"),
attr("x2", "22"),
attr("y1", "2"),
attr("y2", "22"),
]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, props)
}