@algolia/react-instantsearch-widget-loadmore-with-progressbar
Version:
React InstantSearch widget that displays a load more button with a progress bar
9 lines (8 loc) • 394 B
TypeScript
import type { ComponentType } from 'react';
import type { ButtonComponentProps, TranslationsType } from './component';
export interface LoadMoreWithProgressBarExposedProps {
translations?: TranslationsType;
buttonComponent?: ComponentType<ButtonComponentProps>;
className?: string;
}
export declare const LoadMoreWithProgressBar: ComponentType<LoadMoreWithProgressBarExposedProps>;