UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

18 lines (17 loc) 598 B
import React from "react"; import { CometChatTheme } from "../../../theme/type"; /** * Interface defining the props for CometChatStickerKeyboard component */ export interface CometChatStickerKeyboardInterface { loadingText?: string; theme?: CometChatTheme; onPress?: (item: any) => void; emptyText?: string; errorText?: string; } /** * CometChatStickerKeyboard Component * Fetches stickers from the Stickers extension and displays them in a keyboard layout. */ export declare const CometChatStickerKeyboard: (props: CometChatStickerKeyboardInterface) => React.JSX.Element;