Skip to content

Commit a0ec1e0

Browse files
author
Nina Benite
committed
remove unneeded styles
1 parent d440d42 commit a0ec1e0

2 files changed

Lines changed: 193 additions & 2412 deletions

File tree

src/@next/IndexTable/IndexTable.tsx

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
import { Checkbox } from '../Checkbox';
88
import { CheckboxProps } from '../Checkbox';
99
import { Row } from './components/Row/Row';
10+
import { StyledIndexTable } from './IndexTableStyle';
1011

1112
const IndexTable = ({
1213
bulkActions,
@@ -31,15 +32,18 @@ const IndexTable = ({
3132
};
3233

3334
return (
34-
<PolarisIndexTable
35-
bulkActions={bulkActions}
36-
checkbox={renderCheckboxHeader}
37-
itemCount={itemCount}
38-
selectedItemsCount={selectedItemsCount}
39-
{...props}
40-
>
41-
{children}
42-
</PolarisIndexTable>
35+
<>
36+
<StyledIndexTable />
37+
<PolarisIndexTable
38+
bulkActions={bulkActions}
39+
checkbox={renderCheckboxHeader}
40+
itemCount={itemCount}
41+
selectedItemsCount={selectedItemsCount}
42+
{...props}
43+
>
44+
{children}
45+
</PolarisIndexTable>
46+
</>
4347
);
4448
};
4549

0 commit comments

Comments
 (0)