icons 0.5.2

Icons for Rust fullstack applications — Leptos and Dioxus.
Documentation
1
2
3
4
5
6
7
8
9
10
/* Panel Left Open Animation - Chevron slide animation */
[data-name="PanelLeftOpenAnimate"]:hover path[d="m14 9 3 3-3 3"] {
    animation: chevronSlideRight 0.5s ease-in-out;
}

@keyframes chevronSlideRight {
    0% { transform: translateX(0); }
    40% { transform: translateX(1.5px); }
    100% { transform: translateX(0); }
}