easemob-chat-uikit
Version:
   ![GitHub last c
11 lines (10 loc) • 391 B
TypeScript
import React from 'react';
export interface MessageStatusProps {
status: 'received' | 'read' | 'unread' | 'sent' | 'failed' | 'sending' | 'default';
type?: 'icon' | 'text';
prefixCls?: string;
className?: string;
style?: React.CSSProperties;
}
declare const MessageStatus: (props: MessageStatusProps) => import("react/jsx-runtime").JSX.Element;
export { MessageStatus };