UNPKG

react-native-chating-ui-kit

Version:

CometChat React Native UI Kit is a collection of custom UI Components designed to build text , chat and calling features in your application. The UI Kit is developed to keep developers in mind and aims to reduce development efforts significantly

19 lines 732 B
export default class CometChatCallButtonConfiguration { voiceIconImage; videoIconImage; hideVideoCall; hideVoiceCall; onVoiceCallPress; onVideoCallPress; callButtonStyle; constructor({ callButtonStyle, onVideoCallPress, onVoiceCallPress, videoIconImage, voiceIconImage, hideVideoCall, hideVoiceCall }) { this.callButtonStyle = callButtonStyle; this.onVideoCallPress = onVideoCallPress; this.onVoiceCallPress = onVoiceCallPress; this.videoIconImage = videoIconImage; this.voiceIconImage = voiceIconImage; this.hideVideoCall = hideVideoCall; this.hideVoiceCall = hideVoiceCall; } } //# sourceMappingURL=CometChatCallButtonConfiguration.js.map