UNPKG

react-live-chat-loader

Version:

Implement live chat in your react app without taking a performance hit.

9 lines (8 loc) 289 B
import { ReactElement } from 'react'; import { ProviderProps } from '../../types'; interface Props extends ProviderProps { color?: string; icon?: ReactElement; } declare const Intercom: ({ color, icon: Icon, containerClass }: Props) => JSX.Element | null; export default Intercom;