@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
24 lines (23 loc) • 703 B
TypeScript
import React from "react";
import { DeletedBubbleStyle } from "./styles";
/**
* Props for the CometChatDeletedBubble component.
*/
export interface CometChatDeletedBubbleInterface {
/**
* Text to be displayed in the deleted message bubble.
*/
text?: string;
/**
* Custom styles for the deleted bubble.
*/
style?: Partial<DeletedBubbleStyle>;
}
/**
* CometChatDeletedBubble is a component that displays a deleted message bubble.
* It shows an icon along with the provided text.
*
* - Props for the component.
* The rendered deleted message bubble.
*/
export declare const CometChatDeletedBubble: (props: CometChatDeletedBubbleInterface) => React.JSX.Element;