 @import "./fonts/index.scss"; 
 $icon-cls: $icon-prefix-cls;

 @keyframes rotate {
    0% {
        transform: rotate(0deg);
    }


    100% {
        transform: rotate(360deg);
    }
}
 @mixin RotateAnimation {
     animation-name: rotate; // 动画名称 
     animation-timing-function: linear; // 动画执行方式，linear：匀速；ease：先慢再快后慢；ease-in：由慢速开始；ease-out：由慢速结束；ease-in-out：由慢速开始和结束；
     animation-delay: 0s; // 动画延迟时间
     animation-iteration-count: infinite; //  动画播放次数，infinite：一直播放
     animation-duration: 2s; // 动画完成时间
 }




 