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
16 lines (15 loc) • 662 B
TypeScript
import { BaseStyleInterface, BorderStyleInterface, FontStyleInterface } from "../shared";
export interface MessageStyleInterface extends BaseStyleInterface {
messageTextColor?: string;
messageTextFont?: FontStyleInterface;
}
export declare class MessageStyle implements MessageStyleInterface {
messageTextColor?: string;
messageTextFont?: FontStyleInterface;
height?: string | number;
width?: string | number;
backgroundColor?: string;
border?: BorderStyleInterface;
borderRadius?: number;
constructor({ messageTextColor, messageTextFont, backgroundColor, border, borderRadius, height, width, }: MessageStyleInterface);
}