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) • 713 B
TypeScript
import React from "react";
import { StyleProp, ViewStyle } from "react-native";
import { TextBubbleStyleInterface } from "./TextBubbleStyle";
export declare const FormatTextForLinks: ({ str, style }: {
str: any;
style: any;
}) => React.JSX.Element;
export interface CometChatTextBubbleInterface {
/**
* text tobe shown
*/
text: string;
/**
* style for text of type TextBubbleStyle
*/
style?: TextBubbleStyleInterface;
/**
* text container style
*/
textContainerStyle?: StyleProp<ViewStyle>;
}
export declare const CometChatTextBubble: {
(props: CometChatTextBubbleInterface): React.JSX.Element;
defaultProps: {
text: string;
};
};