UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

14 lines 438 B
/** * @class StickerKeyboardConfiguration * @description StickerKeyboardConfiguration class is used for defining the StickerKeyboard templates. * @param {Function} onPress * @param {Object} style */ class StickerKeyboardConfiguration { onPress; constructor({ onPress = (item) => { } }) { this.onPress = onPress; } } export { StickerKeyboardConfiguration }; //# sourceMappingURL=StickerKeyboardConfiguration.js.map