use dioxus::core::{Element, Template, TemplateNode};
use crate::IconProps;
use crate::vdom::{attr, circle, icon_element, icon_template, path, rect, svg};
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/cassette_tape.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn CassetteTape(props: IconProps) -> Element {
static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
rect(&[
attr("height", "16"),
attr("rx", "2"),
attr("width", "20"),
attr("x", "2"),
attr("y", "4"),
]),
circle(&[attr("cx", "8"), attr("cy", "10"), attr("r", "2")]),
path(&[attr("d", "M8 12h8")]),
circle(&[attr("cx", "16"), attr("cy", "10"), attr("r", "2")]),
path(&[attr(
"d",
"m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3",
)]),
])];
static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);
icon_element(TEMPLATE, "0 0 24 24", props)
}