UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

18 lines (16 loc) 331 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 };