use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, icon_element, icon_template, path, rect, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/dices.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Dices(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
rect(&[
attr("height", "12"),
attr("rx", "2"),
attr("ry", "2"),
attr("width", "12"),
attr("x", "2"),
attr("y", "10"),
]),
path(&[attr(
"d",
"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6",
)]),
path(&[attr("d", "M6 18h.01")]),
path(&[attr("d", "M10 14h.01")]),
path(&[attr("d", "M15 6h.01")]),
path(&[attr("d", "M18 9h.01")]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}