icons 0.5.2

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
/* Eye Off Icon Animation */

/* Base state - all paths visible by default to match initial="normal" */
[data-name="EyeOffAnimate"] path {
    opacity: 1;
    stroke-dasharray: 50;
    stroke-dashoffset: 0;
}

/* Animated slash line - precise path targeting */
[data-name="EyeOffAnimate"]:hover path[d="m2 2 20 20"] {
    animation: slashDraw 0.6s ease-in-out;
}

@keyframes slashDraw {
    0% {
        opacity: 0;
        stroke-dasharray: 50;
        stroke-dashoffset: 50;
    }
    100% {
        opacity: 1;
        stroke-dasharray: 50;
        stroke-dashoffset: 0;
    }
}