BottomSheetReactionAddon styling not working in react 18.2.0

[Problem/Question]
The BottomSheetReactionAddOn shows a full screen white bottomsheet. This should instead show a list of emoji’s with some buttons below.

In BottomSheetReactionAddon, buttons have a width&height of 44px (with 4px padding) and contain emoji’s that have width&height 100%.

The buttons receive their styles via a function. I believe this results in a race condition where the emoji’s are rendered 100% of screen size, instead of 100% of 44px.

We could solve this by changing the styles.emoji.width & height to 36px (44-2x4) instead of 100%.