// @mui import { Theme, SxProps } from '@mui/material/styles'; import Box from '@mui/material/Box'; import Switch from '@mui/material/Switch'; import FormControlLabel from '@mui/material/FormControlLabel'; import TablePagination, { TablePaginationProps } from '@mui/material/TablePagination'; // ---------------------------------------------------------------------- type Props = { dense?: boolean; onChangeDense?: (event: React.ChangeEvent) => void; sx?: SxProps; }; export default function TablePaginationCustom({ dense, onChangeDense, rowsPerPageOptions = [5, 10, 25], sx, ...other }: Props & TablePaginationProps) { return ( {onChangeDense && ( } sx={{ pl: 2, py: 1.5, top: 0, position: { sm: 'absolute', }, }} /> )} ); }