Skip to content

Instantly share code, notes, and snippets.

@mbixby
Created February 6, 2025 21:19
Show Gist options
  • Save mbixby/4ea97f498e979b77cb4d6e9af720e77c to your computer and use it in GitHub Desktop.
Save mbixby/4ea97f498e979b77cb4d6e9af720e77c to your computer and use it in GitHub Desktop.
waving hand
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