main
Last change
on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
533 bytes
|
Rev | Line | |
---|
[5d6f37a] | 1 | // @mui
|
---|
| 2 | import TableRow from '@mui/material/TableRow';
|
---|
| 3 | import TableCell from '@mui/material/TableCell';
|
---|
| 4 |
|
---|
| 5 | // ----------------------------------------------------------------------
|
---|
| 6 |
|
---|
| 7 | type Props = {
|
---|
| 8 | height?: number;
|
---|
| 9 | emptyRows: number;
|
---|
| 10 | };
|
---|
| 11 |
|
---|
| 12 | export default function TableEmptyRows({ emptyRows, height }: Props) {
|
---|
| 13 | if (!emptyRows) {
|
---|
| 14 | return null;
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | return (
|
---|
| 18 | <TableRow
|
---|
| 19 | sx={{
|
---|
| 20 | ...(height && {
|
---|
| 21 | height: height * emptyRows,
|
---|
| 22 | }),
|
---|
| 23 | }}
|
---|
| 24 | >
|
---|
| 25 | <TableCell colSpan={9} />
|
---|
| 26 | </TableRow>
|
---|
| 27 | );
|
---|
| 28 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.