source: src/components/table/table-pagination-custom.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.2 KB
Line 
1// @mui
2import { Theme, SxProps } from '@mui/material/styles';
3import Box from '@mui/material/Box';
4import Switch from '@mui/material/Switch';
5import FormControlLabel from '@mui/material/FormControlLabel';
6import TablePagination, { TablePaginationProps } from '@mui/material/TablePagination';
7
8// ----------------------------------------------------------------------
9
10type Props = {
11 dense?: boolean;
12 onChangeDense?: (event: React.ChangeEvent<HTMLInputElement>) => void;
13 sx?: SxProps<Theme>;
14};
15
16export default function TablePaginationCustom({
17 dense,
18 onChangeDense,
19 rowsPerPageOptions = [5, 10, 25],
20 sx,
21 ...other
22}: Props & TablePaginationProps) {
23 return (
24 <Box sx={{ position: 'relative', ...sx }}>
25 <TablePagination
26 rowsPerPageOptions={rowsPerPageOptions}
27 component="div"
28 {...other}
29 sx={{
30 borderTopColor: 'transparent',
31 }}
32 />
33
34 {onChangeDense && (
35 <FormControlLabel
36 label="Dense"
37 control={<Switch checked={dense} onChange={onChangeDense} />}
38 sx={{
39 pl: 2,
40 py: 1.5,
41 top: 0,
42 position: {
43 sm: 'absolute',
44 },
45 }}
46 />
47 )}
48 </Box>
49 );
50}
Note: See TracBrowser for help on using the repository browser.