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
27 lines • 1 kB
JavaScript
import { BaseStyle } from "../../shared";
export class CallDetailsStyle extends BaseStyle {
titleFont;
titleColor;
backIconTint;
closeIconTint;
onlineStatusColor;
privateGroupIconBackground;
protectedGroupIconBackground;
constructor({ titleFont, titleColor, backIconTint, closeIconTint, onlineStatusColor, privateGroupIconBackground, protectedGroupIconBackground, backgroundColor, border, borderRadius, height, width, }) {
super({
backgroundColor,
border,
borderRadius,
height,
width,
});
this.titleFont = titleFont;
this.titleColor = titleColor;
this.backIconTint = backIconTint;
this.closeIconTint = closeIconTint;
this.onlineStatusColor = onlineStatusColor;
this.privateGroupIconBackground = privateGroupIconBackground;
this.protectedGroupIconBackground = protectedGroupIconBackground;
}
}
//# sourceMappingURL=CallDetailsStyle.js.map