icons 0.5.2

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Bold icon path drawing animation - targeting specific path */
[data-name="BoldAnimate"]:hover path[d="M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8"] {
    animation: boldDrawAnimate 0.6s ease-in-out;
}

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