UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

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; }