icons 0.5.2

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
1
2
3
4
5
6
7
8
9
[data-name="ChevronRightAnimate"]:hover path[d="m9 18 6-6-6-6"] {
    animation: chevronRightMove 0.5s ease-in-out;
}

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