@douyinfe/semi-ui
Version:
A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.
12 lines (11 loc) • 439 B
TypeScript
import React, { ReactNode } from 'react';
import { Message, Metadata, RenderAvatarProps } from '../interface';
interface ChatBoxAvatarProps {
children?: string;
role?: Metadata;
continueSend?: boolean;
message?: Message;
customRenderFunc?: (props: RenderAvatarProps) => ReactNode;
}
declare const ChatBoxAvatar: React.MemoExoticComponent<(props: ChatBoxAvatarProps) => React.JSX.Element>;
export default ChatBoxAvatar;