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

39 lines (38 loc) 1.06 kB
import React from 'react'; import PropTypes from 'prop-types'; /** * * 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: any): React.JSX.Element; defaultProps: { hideSearch: boolean; onClick: () => void; style: { width: string; height: number; border: {}; backgroundColor: string; borderRadius: number; sectionHeaderFont: string; sectionHeaderColor: string; categoryIconTint: string; selectedCategoryIconTint: string; categoryBackground: string; }; }; propTypes: { hideSearch: PropTypes.Requireable<boolean>; onClick: PropTypes.Requireable<(...args: any[]) => any>; style: PropTypes.Requireable<object>; }; }; export { CometChatEmojiKeyboard };