icons 0.5.2

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

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