From c540088b12c7b20e28488b4f6edba5031efb5ebb Mon Sep 17 00:00:00 2001 From: knoldus Date: Wed, 16 Feb 2022 14:00:38 +0530 Subject: [PATCH] fixed broken import statement --- packages/react-json-tree/src/index.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/react-json-tree/src/index.tsx b/packages/react-json-tree/src/index.tsx index df1b70bf..b717e413 100644 --- a/packages/react-json-tree/src/index.tsx +++ b/packages/react-json-tree/src/index.tsx @@ -7,12 +7,12 @@ import React from 'react'; import PropTypes from 'prop-types'; import JSONNode from './JSONNode'; import createStylingFromTheme from './createStylingFromTheme'; -import { +import type { invertTheme, - type StylingConfig, - type StylingFunction, - type StylingValue, - type Theme, + StylingConfig, + StylingFunction, + StylingValue, + Theme, } from 'react-base16-styling'; import { CircularPropsPassedThroughJSONTree } from './types';