@fchh/fcos-suite-ui
Version:
Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).
13 lines (12 loc) • 545 B
TypeScript
import { default as React } from 'react';
export interface PaginationProps {
nextHref?: string;
previousHref?: string;
onClickNext?: () => void;
onClickPrevious?: () => void;
start?: number;
end?: number;
overall?: number;
currentPageFormatter?: (start?: number, end?: number, overall?: number) => React.ReactNode;
}
export declare function Pagination({ nextHref, previousHref, onClickNext, onClickPrevious, start, end, overall, currentPageFormatter, }: PaginationProps): import("react/jsx-runtime").JSX.Element;