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
25 lines • 796 B
JavaScript
import { BaseStyle } from "../../base";
export class ButtonStyle extends BaseStyle {
iconTint;
textFont;
textColor;
iconBackgroundColor;
iconCornerRadius;
iconBorder;
constructor({ height, width, backgroundColor, border, borderRadius, iconTint, textFont, textColor, iconBackgroundColor, iconCornerRadius, iconBorder, }) {
super({
height,
width,
backgroundColor,
border,
borderRadius,
});
this.iconTint = iconTint;
this.textFont = textFont;
this.textColor = textColor;
this.iconBackgroundColor = iconBackgroundColor;
this.iconCornerRadius = iconCornerRadius;
this.iconBorder = iconBorder;
}
}
//# sourceMappingURL=CometChatButtonStyle.js.map