react-unicode-emoji
v1.0.1
Published
A React component that allows Unicode Emoji to be render in an image tag
Downloads
2
Readme
React emoji
Introduction
A react component that render Unicode emoji listed in the link Unicode Emoji.
All you need to do is provide 3 information, the category, the group and the code, which you can consult from the link above.
import ReactEmoji from "./core/components/ReactEmoji";
function App() {
return (
<div>
<ReactEmoji
category="Smileys & Emotion"
group="face-smiling"
code="U+1F600"
/>
</div>
);
}
export default App;