@developer.notchatbot/webchat
Version:
A beautiful React chatbot widget with single-file bundle
13 lines (12 loc) • 360 B
TypeScript
import { default as React } from 'react';
export interface WhatsAppButtonProps {
phoneNumber: string;
color?: string;
position?: 'bottom-right' | 'bottom-left';
marginBottom?: number;
marginSide?: number;
size?: number;
message?: string;
}
declare const WhatsAppButton: React.FC<WhatsAppButtonProps>;
export default WhatsAppButton;