mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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);
|
||
|
};
|