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
/* Cog Animation - Full SVG Rotation Effect */

/* Base state with smooth transition */
[data-name="CogAnimate"] {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

/* Hover state with 180 degree rotation */
[data-name="CogAnimate"]:hover {
    transform: rotate(180deg);
}