Easily create & mashup custom emojis ♻️🥴
# Using npm
npm install emoji-mashup
# Using yarn
yarn add emoji-mashup
This method converts the given emojis and then creates an SVG as string which you can write and edit.
const { createCustomEmoji } = require("emoji-mashup");
const newEmoji = { base: "🥴", mouth: "🥴", eyes: "💀", special: "🤕" };
var emojiCombined = createCustomEmoji(newEmoji);
// You receive a string with the svg data, in this example we write a file with that.
// You will generate a mashup of 🥴, 💀 & 🤕.
Published under MIT - Made with 💚 by TrantLabs