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 • 720 B
JavaScript
import { BaseStyle } from '../../base/BaseStyle';
export class BadgeStyle extends BaseStyle {
textColor;
textFont;
constructor({ width = 24, height = 24, border = {
borderWidth: 1,
borderColor: 'transparent',
borderStyle: 'solid',
}, borderRadius = 12, backgroundColor = 'rgba(51, 153, 255, 1)', textColor = 'white', textFont = {
fontFamily: undefined,
fontWeight: '700',
fontSize: 11,
}, }) {
super({
height,
width,
border,
borderRadius,
backgroundColor,
});
this.textColor = textColor;
this.textFont = textFont;
}
}
//# sourceMappingURL=BadgeStyle.js.map