UNPKG

react-live-chat-loader

Version:

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

12 lines (11 loc) 271 B
import { ProviderProps } from '../../types'; interface Props extends ProviderProps { color?: string; } declare const Provider: { ({ color, containerClass }: Props): JSX.Element | null; defaultProps: { color: string; }; }; export default Provider;