UNPKG

@rohitninawe/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

17 lines 379 B
/** * @class CometChatEmoji * @description CometChatEmoji class is used for defining the emoji. * * @param {String} char * @param {Array} keywords */ class CometChatEmoji { char = ""; keywords = []; constructor({ char, keywords }) { this.char = char; this.keywords = keywords; } } export { CometChatEmoji }; //# sourceMappingURL=Emoji.js.map