From d1a5eadebf5a3ea9a5c310660e2bc5e5d772bd32 Mon Sep 17 00:00:00 2001 From: Valentin Palkovic Date: Thu, 18 Jan 2024 10:02:22 +0100 Subject: [PATCH] Theming: Fix export of module augmentation --- code/lib/theming/src/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/lib/theming/src/index.ts b/code/lib/theming/src/index.ts index fe048aa0f2dd..6b9c9139a843 100644 --- a/code/lib/theming/src/index.ts +++ b/code/lib/theming/src/index.ts @@ -4,8 +4,6 @@ import type { FunctionInterpolation, Interpolation } from '@emotion/react'; import type { StorybookTheme } from './types'; -/// - export { default as styled } from '@emotion/styled'; export type { StyledComponent } from '@emotion/styled'; @@ -32,6 +30,7 @@ export type { export * from './base'; export * from './types'; +export * from './emotionAugmentation'; export { default as createCache } from '@emotion/cache'; export { default as isPropValid } from '@emotion/is-prop-valid';