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

17 lines (16 loc) 686 B
import React from 'react'; import { BaseMessageProps, renderUserProfileProps } from '../baseMessage'; import type { CustomMessageType } from '../types/messageType'; export interface UserCardMessageProps extends BaseMessageProps { customMessage: CustomMessageType; prefix?: string; style?: React.CSSProperties; className?: string; type?: 'primary' | 'secondly'; bubbleClass?: string; nickName?: string; renderUserProfile?: (props: renderUserProfileProps) => React.ReactNode; onUserIdCopied?: (userId: string) => void; } declare let UserCardMessage: (props: UserCardMessageProps) => import("react/jsx-runtime").JSX.Element; export { UserCardMessage };