Created
February 6, 2025 21:19
-
-
Save mbixby/4ea97f498e979b77cb4d6e9af720e77c to your computer and use it in GitHub Desktop.
waving hand
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const WavingHand = () => { | |
return ( | |
<motion.div | |
style={{ | |
marginBottom: '-20px', | |
marginRight: '-45px', | |
paddingBottom: '20px', | |
paddingRight: '45px', | |
display: 'inline-block', | |
}} | |
animate={{ rotate: 20 }} | |
transition={{ | |
yoyo: Infinity, | |
from: 0, | |
duration: 0.2, | |
ease: 'easeInOut', | |
type: 'tween', | |
}} | |
> | |
👋 | |
</motion.div> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment