react-rewards icon indicating copy to clipboard operation
react-rewards copied to clipboard

how to add custom emoji

Open bilalturkmen opened this issue 1 year ago • 2 comments

Hello, thanks for the nice package. how to add custom emoji? it might be helpful add an example to the document.

i tried like below. is this the right way?

import { useReward } from 'react-rewards';
...
const { reward: confettiReward, isAnimating } = useReward(
    "rewardId",
    "emoji",
    {
      emoji: ["⚡️", "💥", "✨", "💫", "🌸", "🌟"],
    }
  );
...
<button
    disabled={isConfettiAnimating}
    onClick={() => {
        confettiReward();
    }}
>
    <span id="confettiReward" />
    🎉
</button>

bilalturkmen avatar Feb 27 '23 01:02 bilalturkmen