Skip to content

Commit 7b2a7ff

Browse files
committed
fix type import
1 parent 6f68472 commit 7b2a7ff

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Table/TableContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { TableContainerProps as CarbonTableContainerProps } from "@carbon/react/
99

1010
import { CLASSPREFIX as eccgui } from "../../configuration/constants";
1111

12-
import { TableRowHeightSize, tableRowHeightSizes } from "./Table";
12+
import { TableProps, tableRowHeightSizes } from "./Table";
1313

1414
export interface TableDataContainerProps
1515
extends Omit<
@@ -21,7 +21,7 @@ export interface TableDataContainerProps
2121
>,
2222
React.TableHTMLAttributes<HTMLTableElement> {
2323
children(signature: any): JSX.Element;
24-
size?: TableRowHeightSize;
24+
size?: TableProps["size"];
2525
}
2626
export interface TableSimpleContainerProps
2727
extends Omit<CarbonTableContainerProps, "description" | "stickyHeader" | "title" | "useStaticWidth">,

0 commit comments

Comments
 (0)