UNPKG

@xapp/chat-widget

Version:
22 lines (21 loc) 726 B
import 'rollup-plugin-inject-process-env'; import React, { FC, ReactNode } from "react"; import { WidgetBorderTheme } from "@xapp/stentor-chat-widget"; import "./CtaBubble.scss"; export interface CtaBubbleProps { onClick: () => void; readonly borderStyle?: WidgetBorderTheme; readonly animate?: boolean; readonly buttonAnimation?: string; children?: ReactNode; } export interface CtaBubbleTailProps { readonly width: number; readonly height: number; readonly direction: number; readonly angle: number; readonly length: number; } export declare const CtaBubbleTail: FC<CtaBubbleTailProps>; declare const CtaBubble: FC<React.PropsWithChildren<CtaBubbleProps>>; export default CtaBubble;