mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
10 lines
215 B
React
10 lines
215 B
React
|
import emojione from 'emojione';
|
||
|
|
||
|
emojione.imageType = 'png';
|
||
|
emojione.sprites = false;
|
||
|
emojione.imagePathPNG = '/emoji/';
|
||
|
|
||
|
export default function emojify(text) {
|
||
|
return emojione.unicodeToImage(text);
|
||
|
};
|