UNPKG

@keen.io/ui-core

Version:

Keen visual components library

13 lines (12 loc) 363 B
import { FC } from 'react'; import { PerPageType } from './types'; declare type Props = { rows: number; page?: number; totalPages: number; itemsPerPage?: PerPageType; onPageChange: (page: number) => void; onItemsPerPageChange: (option: PerPageType) => void; }; declare const TableFooter: FC<Props>; export default TableFooter;