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
[data-name="AngryAnimate"]:hover {
    animation: wiggleZoom 0.8s ease-in-out forwards;
    transform-origin: center;
}

@keyframes wiggleZoom {
    0% { transform: scale(1) rotate(0deg); }
    15% { transform: scale(1.1) rotate(-8deg); }
    30% { transform: scale(1.1) rotate(8deg); }
    45% { transform: scale(1.1) rotate(-6deg); }
    60% { transform: scale(1.1) rotate(6deg); }
    75% { transform: scale(1.1) rotate(-3deg); }
    90% { transform: scale(1.1) rotate(3deg); }
    100% { transform: scale(1.1) rotate(0deg); }
}