UNPKG

react-live-chat-loader

Version:

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

8 lines (7 loc) 248 B
import { ProviderProps } from '../../types'; interface Props extends ProviderProps { color?: string; icon?: 'A' | 'B' | 'C' | 'D'; } declare const Drift: ({ color, icon, containerClass }: Props) => JSX.Element | null; export default Drift;