UNPKG

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

34 lines (33 loc) 919 B
import React from "react"; import { CometChatTheme } from "../../../shared/resources/CometChatTheme"; import { CometChat } from "@cometchat-pro/react-native-chat"; export interface CometChatStickerKeyboardInterface { loadingText?: string; theme?: CometChatTheme; onPress?: (item: CometChat.CustomMessage) => void; emptyText?: string; errorText?: string; } /** * * CometChatStickerKeyboard is a component that fetches stickers from Stickers extension * and displays it. * * @version 1.0.0 * @author CometChatTeam * @copyright © 2022 CometChat Inc. * */ export declare const CometChatStickerKeyboard: { (props: CometChatStickerKeyboardInterface): React.JSX.Element; defaultProps: { emptyText: any; errorText: any; loadingText: any; style: { width: string; height: number; borderRadius: number; }; }; };