// @mui import { Theme, SxProps } from '@mui/material/styles'; import Box from '@mui/material/Box'; import TableRow from '@mui/material/TableRow'; import TableHead from '@mui/material/TableHead'; import TableCell from '@mui/material/TableCell'; import TableSortLabel from '@mui/material/TableSortLabel'; // ---------------------------------------------------------------------- const visuallyHidden = { border: 0, margin: -1, padding: 0, width: '1px', height: '1px', overflow: 'hidden', position: 'absolute', whiteSpace: 'nowrap', clip: 'rect(0 0 0 0)', } as const; // ---------------------------------------------------------------------- type Props = { order?: 'asc' | 'desc'; orderBy?: string; headLabel: any[]; rowCount?: number; numSelected?: number; onSort?: (id: string) => void; onSelectAllRows?: (checked: boolean) => void; sx?: SxProps; }; export default function TableHeadCustom({ order, orderBy, rowCount = 0, headLabel, numSelected = 0, onSort, onSelectAllRows, sx, }: Props) { return ( {/* {onSelectAllRows && ( ) => onSelectAllRows(event.target.checked) } /> )} */} {headLabel.map((headCell) => ( {onSort ? ( onSort(headCell.id)} > {headCell.label} {orderBy === headCell.id ? ( {order === 'desc' ? 'sorted descending' : 'sorted ascending'} ) : null} ) : ( headCell.label )} ))} ); }