@rohitninawe/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
30 lines (29 loc) • 694 B
TypeScript
import { EmojiKeyboardConfiguration } from './EmojiKeyboardConfiguration';
/**
*
* CometChatEmojiKeyboard is a component that fetch emoji from emjis file and displays emoji
* in the CometChatListItem component.
*
*
* @version 1.0.0
* @author CometChatTeam
* @copyright © 2022 CometChat Inc.
*
*/
declare const CometChatEmojiKeyboard: {
(props: EmojiKeyboardConfiguration): any;
defaultProps: {
onClick: () => void;
style: {
width: string;
height: number;
border: {};
borderRadius: number;
};
};
propTypes: {
onClick: any;
style: any;
};
};
export { CometChatEmojiKeyboard };