UNPKG

cdbreact

Version:

Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps

30 lines (29 loc) 938 B
import React from 'react'; import PropTypes from 'prop-types'; interface Props { activePage?: number; changeActivePage?: Function; label?: string[]; pages?: any; pagesAmount?: number; className?: string; children?: React.ReactNode; } declare const DataTablePagination: { (props: Props): JSX.Element; propTypes: { activePage: PropTypes.Validator<number>; changeActivePage: PropTypes.Validator<(...args: any[]) => any>; label: PropTypes.Validator<string[]>; pages: PropTypes.Validator<any[]>; pagesAmount: PropTypes.Validator<number>; className: PropTypes.Requireable<string>; children: PropTypes.Requireable<PropTypes.ReactNodeLike>; }; defaultProps: { children: string; className: string; }; }; export default DataTablePagination; export { DataTablePagination as MDBDataTablePagination };