Skip to content

Commit aaf285b

Browse files
committed
Export Theme type explicitly
1 parent db8969c commit aaf285b

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/index.ts

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,17 @@ export { Toggle } from './Toggle';
5252
export { Tooltip } from './Tooltip';
5353
export { Truncate } from './Truncate';
5454

55-
export type { BoxProps } from './Box';
56-
export type { DataTableColumn } from './DataTable';
57-
export type { FormProps, FormRenderProps, FormSubmitHandler } from './Form';
58-
export type { GridProps } from './Grid';
59-
55+
// Modules
6056
export { animateIcon, fadeIn, fadeOut, fadeInOut, rotate } from './modules/animations';
6157
export { icons } from './modules/options';
6258
export { mergeTheme, px, responsive } from './modules/helpers';
6359
export * as theme from './modules/theme';
6460
export { getContainerStyles } from './modules/system';
61+
62+
// Types
63+
export type { BoxProps } from './Box';
64+
export type { DataTableColumn } from './DataTable';
65+
export type { FormProps, FormRenderProps, FormSubmitHandler } from './Form';
66+
export type { GridProps } from './Grid';
67+
export type { Theme } from './types';
6568
export * as Types from './types';

0 commit comments

Comments
 (0)