stream-chat-react
Version:
React components to create chat conversations or livestream style chat
6 lines • 326 B
TypeScript
import React from 'react';
export type SendButtonProps = {
sendMessage: (event: React.BaseSyntheticEvent) => void;
} & React.ComponentProps<'button'>;
export declare const SendButton: ({ children, sendMessage, ...rest }: SendButtonProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=SendButton.d.ts.map