@blueeast/bluerain-plugin-material-ui
Version:
Adds [Material UI](http://www.material-ui.com/#/) theme Provider to BlueRain. Components of material-ui have been developed using a common interface. [https://blueeast.gitbook.io/bluerain-plugin-material-ui](https://blueeast.gitbook.io/bluerain-plugin-mat
19 lines (18 loc) • 687 B
TypeScript
import * as React from 'react';
export interface TablePaginationProps {
count: number;
labelDisplayedRows?: any;
labelRowsPerPage?: React.ReactNode;
nextIconButtonProps?: any;
onChangePage: (event: React.MouseEvent<HTMLButtonElement> | null, page: number) => void;
onChangeRowsPerPage?: React.ChangeEventHandler<HTMLTextAreaElement | HTMLInputElement>;
page: number;
rowsPerPage: number;
ActionsComponent?: any;
backIconButtonProps?: any;
component?: any;
rowsPerPageOptions?: number[];
SelectProps?: any;
}
declare const BluerainTablePagination: React.StatelessComponent<TablePaginationProps>;
export default BluerainTablePagination;