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
23 lines (22 loc) • 720 B
TypeScript
import { StyleProp, ViewStyle } from 'react-native';
import React from 'react';
import { FontStyleInterface } from "../../shared/base";
interface textStyle extends FontStyleInterface {
color?: string;
}
export interface MessageTranslationBubble {
translatedText?: string;
text?: string;
style?: {
backgroundColor?: string;
textFont?: FontStyleInterface;
textColor?: string;
borderRadius?: number;
translatedTextStyle?: textStyle;
translatedMsgStyle?: textStyle;
};
textContainerStyle?: StyleProp<ViewStyle>;
alignment?: string;
}
export declare const MessageTranslationBubble: (props: MessageTranslationBubble) => React.JSX.Element;
export {};