@rohitninawe/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
31 lines • 1.18 kB
JavaScript
import { BaseStyle } from "../../shared";
export class CallParticipantsStyle extends BaseStyle {
titleFont;
titleColor;
emptyTextFont;
emptyTextColor;
dateTextFont;
dateTextColor;
backIconTint;
durationTextFont;
durationTextColor;
constructor({ titleFont = { fontSize: 20, fontWeight: "600" }, backgroundColor = "white", border, borderRadius, height, titleColor = "#000", dateTextFont, dateTextColor, emptyTextColor, emptyTextFont, backIconTint, durationTextColor, durationTextFont, width }) {
super({
backgroundColor: backgroundColor,
border: border,
borderRadius: borderRadius,
height: height,
width: width
});
this.titleColor = titleColor;
this.titleFont = titleFont;
this.dateTextFont = dateTextFont;
this.dateTextColor = dateTextColor;
this.emptyTextColor = emptyTextColor;
this.emptyTextFont = emptyTextFont;
this.backIconTint = backIconTint;
this.durationTextColor = durationTextColor;
this.durationTextFont = durationTextFont;
}
}
//# sourceMappingURL=CallLogParticipantsStyle.js.map