@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
18 lines (17 loc) • 517 B
TypeScript
import * as React from 'react';
import { BaseProps } from "../../../utils/types";
import { SharedProps } from "./ChatMessage";
export interface MessageTextProps extends BaseProps {
text: string;
typingText: string;
}
export declare type InternalTextProps = MessageTextProps & SharedProps;
export declare const MessageText: {
(props: InternalTextProps): React.JSX.Element;
defaultProps: {
text: string;
typingText: string;
};
displayName: string;
};
export default MessageText;