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
28 lines (27 loc) • 1 kB
TypeScript
import { BaseStyle, BaseStyleInterface, FontStyleInterface } from '../../base';
/**
* @class ListItemStyle
* @description ListItemStyle class is used for defining the ListItemStyle template.
* @param {any} width
* @param {any} height
* @param {string} backgroundColor
* @param {object} border
* @param {any} borderRadius
* @param {string} titleColor
* @param {object} titleFont
* @param {string} subtitleColor
* @param {object} subtitleFont
* @param {string} typingIndicatorTextColor
* @param {object} typingIndicatorTextFont
* @param {string} threadIndicatorTextColor
* @param {object} threadIndicatorTextFont
*/
export declare class ListItemStyle extends BaseStyle {
titleColor?: string;
titleFont?: FontStyleInterface;
constructor({ width, height, backgroundColor, border, borderRadius, titleColor, titleFont, }: ListItemStyleInterface);
}
export interface ListItemStyleInterface extends BaseStyleInterface {
titleColor?: string;
titleFont?: FontStyleInterface;
}