icons 0.5.1

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
/* Monitor Check Animation - Line drawing effect */
[data-name="MonitorCheckAnimate"] path[d="m9 10 2 2 4-4"] {
    opacity: 1;
    stroke-dasharray: 15;
    stroke-dashoffset: 0;
    transform-origin: center;
}

[data-name="MonitorCheckAnimate"]:hover path[d="m9 10 2 2 4-4"] {
    animation: checkDraw 0.4s ease-in-out;
}

@keyframes checkDraw {
    0% {
        opacity: 0;
        stroke-dashoffset: 15;
    }
    100% {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}