TablePaginationActions API
API reference docs for the React TablePaginationActions component. Learn about the props, CSS, and other APIs of this exported module.
Demos
Import
import TablePaginationActions from '@mui/material/TablePaginationActions';
// or
import { TablePaginationActions } from '@mui/material';
Learn about the difference by reading this guide on minimizing bundle size.
Props of the native component are also available.
Name | Type | Default | Description |
---|---|---|---|
getItemAriaLabel* | func | - | Accepts a function which returns a string value that provides a user-friendly name for the current page. This is important for screen reader users. Signature: function(type: string) => string
|
backIconButtonProps | object | - | This prop is an alias for |
classes | object | - | Override or extend the styles applied to the component. See CSS classes API below for more details. |
disabled | bool | false | If |
nextIconButtonProps | object | - | This prop is an alias for |
ref
is forwarded to the root element.Theme default props
You can use MuiTablePaginationActions
to change the default props of this component with the theme.
Slot name | Class name | Default component | Description |
---|---|---|---|
firstButton | IconButton | The component that renders the first button. | |
lastButton | IconButton | The component that renders the last button. | |
nextButton | IconButton | The component that renders the next button. | |
previousButton | IconButton | The component that renders the previous button. | |
firstButtonIcon | FirstPageIcon | The component that renders the first button icon. | |
lastButtonIcon | LastPageIcon | The component that renders the last button icon. | |
nextButtonIcon | KeyboardArrowRight | The component that renders the next button icon. | |
previousButtonIcon | KeyboardArrowLeft | The component that renders the previous button icon. |
Source code
If you did not find the information in this page, consider having a look at the implementation of the component for more detail.