tb-react-live-chat-loader
Version:
Implement live chat in your react app without taking a performance hit.
11 lines (10 loc) • 384 B
TypeScript
/// <reference types="react" />
declare type HelpScoutIcon = 'message' | 'antenna' | 'search' | 'question' | 'beacon' | 'close';
interface Props {
color?: string;
icon?: HelpScoutIcon;
zIndex: string;
horizontalPosition: 'left' | 'right';
}
declare const HelpScout: ({ color, icon, zIndex, horizontalPosition }: Props) => JSX.Element | null;
export default HelpScout;