From c683c50bdd55a9b3959f141b50b2830a83089342 Mon Sep 17 00:00:00 2001 From: VovkaGoodwin <48078456+VovkaGoodwin@users.noreply.github.com> Date: Wed, 12 Jul 2023 12:39:30 +0700 Subject: [PATCH] type: changed import type to common import (#43501) Co-authored-by: Vladimir Radko --- components/space/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/space/index.tsx b/components/space/index.tsx index 03bd47cc26..4ffd25b527 100644 --- a/components/space/index.tsx +++ b/components/space/index.tsx @@ -10,7 +10,7 @@ import Item from './Item'; import { SpaceContextProvider } from './context'; import useStyle from './style'; -export type { SpaceContext } from './context'; +export { SpaceContext } from './context'; export type SpaceSize = SizeType | number;