UNPKG

easemob-chat-uikit

Version:

![Static Badge](https://img.shields.io/badge/platform-React-green) ![Static Badge](https://img.shields.io/badge/language-typescript-green) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/easemob/Easemob-UIKit-web) ![GitHub last c

15 lines (14 loc) 390 B
import { FC, ReactNode } from 'react'; export interface ContactGroupProps { prefix?: string; children?: ReactNode; title?: string; unreadCount?: number; itemCount?: number; itemHeight?: number; onclickTitle?: (data: any) => void; hasMenu?: boolean; highlightUnread?: boolean; } declare const ContactGroup: FC<ContactGroupProps>; export { ContactGroup };