@fluentui/react-northstar
Version:
A themable React component library.
17 lines (16 loc) • 744 B
TypeScript
import { BoxProps } from '../Box/Box';
import { ChatDensity } from './chatDensity';
interface ChatMessageReadStatusOwnProps {
/** Chat density. */
density?: ChatDensity;
title?: string;
}
export interface ChatMessageReadStatusProps extends ChatMessageReadStatusOwnProps, BoxProps {
}
export declare type ChatMessageReadStatusStylesProps = Pick<ChatMessageReadStatusProps, 'density' | 'title'>;
export declare const chatMessageReadStatusClassName = "ui-chat__messagereadstatus";
/**
* A ChatMessageReadStatus places a indicator to represent the read status of the message
*/
export declare const ChatMessageReadStatus: import("@fluentui/react-bindings").ComponentWithAs<"div", ChatMessageReadStatusOwnProps & BoxProps>;
export {};