1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-17 12:02:05 +00:00
mastodon/app/assets/javascripts/components/emoji.jsx

10 lines
208 B
React
Raw Normal View History

2016-11-15 17:38:57 +00:00
import emojione from 'emojione';
emojione.imageType = 'png';
emojione.sprites = false;
emojione.imagePathPNG = '/emoji/';
export default function emojify(text) {
return emojione.toImage(text);
2016-11-15 17:38:57 +00:00
};