From 41563f2b8f5a330f313a25b5eb6a56a014cdec2c Mon Sep 17 00:00:00 2001 From: Bryce Osterhaus Date: Mon, 9 Oct 2023 12:12:06 +0400 Subject: [PATCH] fix(clay-table): export type interface to avoid breaking TS compilation --- packages/clay-table/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/clay-table/src/index.tsx b/packages/clay-table/src/index.tsx index 994ba4149e..0f67e776a7 100644 --- a/packages/clay-table/src/index.tsx +++ b/packages/clay-table/src/index.tsx @@ -15,7 +15,7 @@ type ResposiveSizeType = 'lg' | 'md' | 'sm' | 'xl'; type VerticalAlignmentType = 'bottom' | 'middle' | 'top'; -interface IProps extends React.HTMLAttributes { +export interface IProps extends React.HTMLAttributes { /** * This property vertically align the contents * inside the table body according a given position.