icons 0.5.1

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
/* Base state: Match TSX initial="normal" */
[data-name="FlameAnimate"] path[d="M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z"] {
    opacity: 1;
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
}

/* Animation: Line drawing effect */
[data-name="FlameAnimate"]:hover path[d="M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z"] {
    animation: drawFlame 0.4s ease-in-out 0.1s both;
}

@keyframes drawFlame {
    0% {
        opacity: 0;
        stroke-dashoffset: 60;
    }
    100% {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}