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
18 lines (17 loc) • 478 B
TypeScript
import React from "react";
import { StickerStyleInterface } from "./StickerStyle";
export interface CometChatStickerBubbleProps {
/**
* image url pass as {uri: "dummyUrl"}
*/
url: string;
/**
* place holder image
*/
name?: string;
/**
* style object of type ImageBubbleStyleInterface
*/
style?: StickerStyleInterface;
}
export declare const CometChatStickerBubble: (props: CometChatStickerBubbleProps) => React.JSX.Element;