@rohitninawe/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
49 lines • 2.01 kB
JavaScript
import { BaseStyle } from "../../shared";
export class CallLogsStyle extends BaseStyle {
titleFont;
titleColor;
loadingTint;
emptyTextFont;
emptyTextColor;
errorTextColor;
errorTextFont;
separatorColor;
infoIconTint;
missedCallIconTint;
outgoingCallIconTint;
incomingCallIconTint;
subtitleTextFont;
subtitleTextColor;
dateTextFont;
dateTextColor;
dateSeparatorTextFont;
dateSeparatorTextColor;
constructor({ titleFont = { fontSize: 20, fontWeight: "600" }, backgroundColor = "white", border, borderRadius, height, titleColor = "#000", width, loadingTint, emptyTextFont, emptyTextColor, errorTextColor, errorTextFont, separatorColor, infoIconTint, missedCallIconTint, outgoingCallIconTint, incomingCallIconTint, subtitleTextFont, subtitleTextColor, dateTextFont, dateTextColor, dateSeparatorTextFont, dateSeparatorTextColor }) {
super({
backgroundColor: backgroundColor,
border: border,
borderRadius: borderRadius,
height: height,
width: width
});
this.titleColor = titleColor;
this.titleFont = titleFont;
this.loadingTint = loadingTint;
this.emptyTextFont = emptyTextFont;
this.emptyTextColor = emptyTextColor;
this.errorTextColor = errorTextColor;
this.errorTextFont = errorTextFont;
this.separatorColor = separatorColor;
this.infoIconTint = infoIconTint;
this.missedCallIconTint = missedCallIconTint;
this.outgoingCallIconTint = outgoingCallIconTint;
this.incomingCallIconTint = incomingCallIconTint;
this.subtitleTextFont = subtitleTextFont;
this.subtitleTextColor = subtitleTextColor;
this.dateTextFont = dateTextFont;
this.dateTextColor = dateTextColor;
this.dateSeparatorTextFont = dateSeparatorTextFont;
this.dateSeparatorTextColor = dateSeparatorTextColor;
}
}
//# sourceMappingURL=CallLogsStyle.js.map