UNPKG

@xapp/chat-widget

Version:
19 lines (18 loc) 527 B
import 'rollup-plugin-inject-process-env'; import React, { FC } from "react"; export interface Props { readonly visible: boolean; /** * How long to display the bubble, in MS */ readonly timeout?: number; /** * How long to delay showing the bubble, in MS */ readonly delay?: number; readonly animate?: boolean; readonly buttonAnimation?: string; onClick?: () => void; } declare const CtaBubbleContainer: FC<React.PropsWithChildren<Props>>; export default CtaBubbleContainer;