From c723fc33e5c2ea88ba7ee2ab96a0e5e06b49f5ec Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Fri, 8 May 2020 17:04:31 +0200 Subject: [PATCH] packages/core: fix src-relative import --- packages/core/src/api/app/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/api/app/types.ts b/packages/core/src/api/app/types.ts index cc54cef606..4a6efe66fb 100644 --- a/packages/core/src/api/app/types.ts +++ b/packages/core/src/api/app/types.ts @@ -15,7 +15,7 @@ */ import { ComponentType } from 'react'; -import { IconComponent, SystemIconKey } from 'icons'; +import { IconComponent, SystemIconKey } from '../../icons'; export type App = { getSystemIcon(key: SystemIconKey): IconComponent;