react fluent emoji
Should not use display:none
on svg-sprite
element or its parant element, you can use visibility
or position: absolute
to hide it, something like this:
<div style="height: 0; width: 0; position: absolute; visibility: hidden">
<svg>
</svg>
</div>