dioxus-icons 0.1.0

Lucide icons for Dioxus, one component per icon.
Documentation
// @generated by dioxus-icons-codegen from Lucide v1.14.0 (56e49f12166312f04af4cfd862621c93cf583979). Do not edit.
// Lucide icons are licensed under ISC. See LICENSE-LUCIDE.

use dioxus::core::{Element, Template, TemplateNode};

use crate::IconProps;
use crate::vdom::{attr, circle, icon_element, icon_template, path, svg};

#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/shield_cog_corner.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn ShieldCogCorner(props: IconProps) -> Element {
    static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
        path(&[attr(
            "d",
            "M11 22c-3.806-1.45-7-3.966-7-9V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v4",
        )]),
        path(&[attr("d", "M14.923 16.547 14 16.164")]),
        path(&[attr("d", "m14.923 18.843-.923.383")]),
        path(&[attr("d", "M16.547 14.923 16.164 14")]),
        path(&[attr("d", "m16.547 20.467-.383.924")]),
        path(&[attr("d", "m18.843 14.923.383-.923")]),
        path(&[attr("d", "m19.225 21.391-.382-.924")]),
        path(&[attr("d", "m20.467 16.547.923-.383")]),
        path(&[attr("d", "m20.467 18.843.923.383")]),
        circle(&[attr("cx", "17.695"), attr("cy", "17.695"), attr("r", "3")]),
    ])];
    static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);

    icon_element(TEMPLATE, "0 0 24 24", props)
}