How to resize ?
To adjust the size of the animated emoji, utilize the CSS style props.
note
By default, the size is set to 100
Here's an example of how to resize the emoji:
<ReactEmojis emoji="😛" style={{ width: 50, height: 50 }} />
info
If you want the emoji to have the height and width of the parent (dynamic), you should set the height and width to 'auto'.
<div className="w-96 h-96">
<ReactEmojis
emoji="😛"
style={{ height: 'auto', width: 'auto' }}
/>
</div>