diff --git a/src/createTheme.ts b/src/createTheme.ts index 96fc83e4..6717200d 100644 --- a/src/createTheme.ts +++ b/src/createTheme.ts @@ -1,6 +1,7 @@ -import {BaseTheme} from './types'; +import {KnownBaseTheme} from './types'; // Enforces proper shape for theme without throwing away the user specific values -const createTheme = (themeObject: T): T => themeObject; +const createTheme = (themeObject: T): T => + themeObject; export default createTheme;