UNPKG

tb-react-live-chat-loader

Version:

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

12 lines (11 loc) 220 B
/// <reference types="react" /> interface Props { color?: string; } declare const Intercom: { ({ color }: Props): JSX.Element | null; defaultProps: { color: string; }; }; export default Intercom;