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

20 lines (19 loc) 746 B
import React from 'react'; import { BaseMessageProps, renderUserProfileProps } from '../baseMessage'; import { IconProps } from '../../component/icon'; import type { FileMessageType } from '../types/messageType'; export interface FileMessageProps extends BaseMessageProps { fileMessage: FileMessageType; iconType?: IconProps['type']; prefix?: string; className?: string; style?: React.CSSProperties; bubbleClass?: string; nickName?: string; type?: 'primary' | 'secondly'; renderUserProfile?: (props: renderUserProfileProps) => React.ReactNode; } declare const FileMessageOut: ((props: FileMessageProps) => import("react/jsx-runtime").JSX.Element) & { displayName: string; }; export default FileMessageOut;