icons 0.6.2

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
1
2
3
4
5
6
7
8
9
10
/* Chevron left animation - horizontal wiggle effect */
[data-name="ChevronLeftAnimate"]:hover path[d="m15 18-6-6 6-6"] {
    animation: chevronLeftWiggle 0.5s ease-in-out;
}

@keyframes chevronLeftWiggle {
    0% { transform: translateX(0); }
    40% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}