UNPKG

@chatui/core

Version:

The React library for Chatbot UI

8 lines (7 loc) 251 B
import React from 'react'; interface SendButtonProps { disabled?: boolean; onClick: (e: React.MouseEvent<HTMLButtonElement>) => void; } export declare const SendButton: ({ disabled, onClick }: SendButtonProps) => React.JSX.Element; export {};