1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-11-29 23:38:51 +09:00
whippy-edition/app/assets/javascripts/components/emoji.jsx

10 lines
208 B
React
Raw Normal View History

2016-11-16 02:38:57 +09: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-16 02:38:57 +09:00
};