aspirechat
Version:
A highly customizable React chatbot component with extensive configuration options
13 lines (12 loc) • 358 B
TypeScript
import React from "react";
interface ChatToggleButtonProps {
config?: {
position?: {
placement?: "top-left" | "top-right" | "bottom-left" | "bottom-right";
offsetX?: string;
offsetY?: string;
};
};
}
declare const ChatToggleButton: React.FC<ChatToggleButtonProps>;
export default ChatToggleButton;