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

20 lines (19 loc) 562 B
/** * * * @class BorderStyle * @description BorderStyle class is used for defining the border. * @param {number} borderWidth * @param {string} borderStyle * @param {string} borderColor */ export declare class BorderStyle { borderWidth?: number; borderStyle?: 'solid' | 'dotted' | 'dashed'; borderColor?: string; constructor({ borderWidth, borderStyle, borderColor, }: BorderStyleInterface); } export interface BorderStyleInterface { borderWidth?: number; borderStyle?: 'solid' | 'dotted' | 'dashed'; borderColor?: string; }