Emoji as React Native component
<Emoji name="coffee" style={{fontSize: 50}} />
- Install package via npm:
npm install --save react-native-emoji
- Require in your project
import Emoji from 'react-native-emoji';
name
(String) - Emoji's name (full list)
Note that dashes should be replaced with underscores, e.g.raising-hand
becomesraising_hand
.- All supported
<Text />
properties, likestyle
.
Based on node-emoji. Originally maintained by @jorilallo.