Repository URL to install this package:
|
Version:
0.9.5 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
molecules
/
Pagination
/
renderProps.d.ts
|
|---|
/// <reference types="react" />
import { PaginationProps, State } from './typings';
declare function defaultRenderArrows(props: PaginationProps, state: State): JSX.Element;
declare function defaultRenderLimit(props: PaginationProps, state: State, handleSize: any): JSX.Element;
declare function defaultRenderSelector(props: PaginationProps, state: State, handlePage: any): JSX.Element;
declare function defaultRenderOption(page: string | number, index?: number): JSX.Element;
export { defaultRenderArrows, defaultRenderLimit, defaultRenderOption, defaultRenderSelector, };