dioxus-icons 0.0.1

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, icon_element, icon_template, path, svg};

#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("docs/dna.md"))]
#[cfg_attr(any(doc, rust_analyzer), doc = include_str!("../../../rustdoc-header.html"))]
#[allow(non_snake_case)]
pub fn Dna(props: IconProps) -> Element {
    static TEMPLATE_ROOTS: &[TemplateNode] = &[svg(&[
        path(&[attr("d", "m10 16 1.5 1.5")]),
        path(&[attr("d", "m14 8-1.5-1.5")]),
        path(&[attr("d", "M15 2c-1.798 1.998-2.518 3.995-2.807 5.993")]),
        path(&[attr("d", "m16.5 10.5 1 1")]),
        path(&[attr("d", "m17 6-2.891-2.891")]),
        path(&[attr("d", "M2 15c6.667-6 13.333 0 20-6")]),
        path(&[attr("d", "m20 9 .891.891")]),
        path(&[attr("d", "M3.109 14.109 4 15")]),
        path(&[attr("d", "m6.5 12.5 1 1")]),
        path(&[attr("d", "m7 18 2.891 2.891")]),
        path(&[attr("d", "M9 22c1.798-1.998 2.518-3.995 2.807-5.993")]),
    ])];
    static TEMPLATE: Template = icon_template(TEMPLATE_ROOTS);

    icon_element(TEMPLATE, props)
}