@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
17 lines (16 loc) • 597 B
TypeScript
import * as React from 'react';
import { IncomingOptionProps } from "./IncomingBubble";
import { OutgoingOptionProps } from "./OutgoingBubble";
import { BaseProps } from "../../../../utils/types";
export declare type ChatBubbleType = 'incoming' | 'outgoing';
export interface ChatBubbleProps extends BaseProps {
type: ChatBubbleType;
incomingOptions?: IncomingOptionProps;
outgoingOptions?: OutgoingOptionProps;
children?: React.ReactNode;
}
export declare const ChatBubble: {
(props: ChatBubbleProps): React.JSX.Element;
displayName: string;
};
export default ChatBubble;