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
22 lines • 632 B
JavaScript
import { BaseStyle, BorderStyle } from '../../base';
/**
* @class StatusIndicatorStyle
* @description style template for StatusIndicator
* @param {} height
* @param {} width
* @param {} border
* @param {} borderRadius
* @param {} backgroundColor
*/
export class StatusIndicatorStyle extends BaseStyle {
constructor({ height = 12, width = 12, border = new BorderStyle({}), borderRadius = 6, backgroundColor = '', }) {
super({
width,
height,
backgroundColor,
border,
borderRadius,
});
}
}
//# sourceMappingURL=StatusIndicatorStyle.js.map