Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 380 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 380 Bytes

react-fluent-emoji

react fluent emoji

Q&A

svg-sprite don't support linearGradient in Chrome

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>