UNPKG

aspirechat

Version:

A highly customizable React chatbot component with extensive configuration options

18 lines (17 loc) 464 B
import React from "react"; interface ChatbotProps { config?: { headerTitle?: string; logo?: string; position?: { placement?: "top-left" | "top-right" | "bottom-left" | "bottom-right"; offsetX?: string; offsetY?: string; }; width?: string; maxHeight?: string; disableAutoScroll?: boolean; }; } declare const Chatbot: React.FC<ChatbotProps>; export default Chatbot;