This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-11-15 18:38:57 +01:00
|
|
|
import emojione from 'emojione';
|
|
|
|
|
|
|
|
emojione.imageType = 'png';
|
|
|
|
emojione.sprites = false;
|
|
|
|
emojione.imagePathPNG = '/emoji/';
|
|
|
|
|
|
|
|
export default function emojify(text) {
|
2017-01-05 13:45:21 +01:00
|
|
|
return emojione.toImage(text);
|
2016-11-15 18:38:57 +01:00
|
|
|
};
|