UNPKG

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

19 lines 535 B
/** * * * @class BorderStyle * @description BorderStyle class is used for defining the border. * @param {number} borderWidth * @param {string} borderStyle * @param {string} borderColor */ export class BorderStyle { borderWidth; borderStyle; borderColor; constructor({ borderWidth = 0, borderStyle = 'solid', borderColor = 'transparent', }) { this.borderWidth = borderWidth; this.borderStyle = borderStyle; this.borderColor = borderColor; } } //# sourceMappingURL=BorderStyle.js.map