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
24 lines (23 loc) • 562 B
TypeScript
import React from 'react';
import { BadgeStyle } from './BadgeStyle';
/**
*
* CometChatBadge is a component useful when returning the number of unread messages in a chat.
* This component is used to return the unread message count with custom style.
*
* @version 1.0.0
* @author CometChat
*
*/
interface CometChatBadgeProps {
count: number;
style?: BadgeStyle;
}
export declare const CometChatBadge: {
(props: CometChatBadgeProps): React.JSX.Element;
defaultProps: {
count: number;
style: BadgeStyle;
};
};
export {};