Skip to content

Commit

Permalink
fix(clay-table): export type interface to avoid breaking TS compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
bryceosterhaus committed Oct 9, 2023
1 parent d156ddb commit 41563f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/clay-table/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type ResposiveSizeType = 'lg' | 'md' | 'sm' | 'xl';

type VerticalAlignmentType = 'bottom' | 'middle' | 'top';

interface IProps extends React.HTMLAttributes<HTMLTableElement> {
export interface IProps extends React.HTMLAttributes<HTMLTableElement> {
/**
* This property vertically align the contents
* inside the table body according a given position.
Expand Down

0 comments on commit 41563f2

Please sign in to comment.