diff --git a/src/components/FontAwesomeIcon/index.vue b/src/components/FontAwesomeIcon/index.vue index 44ff4f6..b8998b2 100644 --- a/src/components/FontAwesomeIcon/index.vue +++ b/src/components/FontAwesomeIcon/index.vue @@ -38,6 +38,9 @@ props.bounce ? 'fa-bounce' : '', props.flip ? 'fa-flip' : '', props.shake ? 'fa-shake' : '', + props.spin ? 'fa-spin' : '', + props.spinReverse ? 'fa-spin-reverse' : '', + props.spinPulse ? 'fa-spin-pulse' : '', ]; const iconStyleObject = Object.assign( { @@ -69,6 +72,13 @@ '--fa-flip-angle': props.flipConfig?.angle || '-180deg', } : {}, + props.spin + ? { + '--fa-animation-delay': props.spinDelay, + '--fa-animation-iteration-count': props.spinIterationCount, + '--fa-animation-timing': props.spinTiming, + } + : {}, );