UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

9 lines 491 B
import React, { PropsWithChildren } from 'react'; export declare type LoadMoreButtonProps = { /** onClick handler load more button. Pagination logic should be executed in this handler. */ onClick: React.MouseEventHandler<HTMLButtonElement>; /** If true, LoadingIndicator is displayed instead of button */ refreshing?: boolean; }; export declare const LoadMoreButton: (props: PropsWithChildren<LoadMoreButtonProps>) => JSX.Element; //# sourceMappingURL=LoadMoreButton.d.ts.map