@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
18 lines (17 loc) • 454 B
TypeScript
import React from "react";
import { ImageStyle } from "react-native";
export interface CometChatStickerBubbleProps {
/**
* image url pass as {uri: "dummyUrl"}
*/
url: string;
/**
* place holder image
*/
name?: string;
/**
* style object of type ImageBubbleStyleInterface
*/
style?: ImageStyle;
}
export declare const CometChatStickerBubble: (props: CometChatStickerBubbleProps) => React.JSX.Element;