aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/context/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/dev-tools-pages/ts/context/index.tsx')
-rw-r--r--packages/dev-tools-pages/ts/context/index.tsx22
1 files changed, 0 insertions, 22 deletions
diff --git a/packages/dev-tools-pages/ts/context/index.tsx b/packages/dev-tools-pages/ts/context/index.tsx
deleted file mode 100644
index 97ccf5c16..000000000
--- a/packages/dev-tools-pages/ts/context/index.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-import { createContext } from 'react';
-
-interface ContextInterface {
- title?: string;
- name?: string;
- docLink?: string;
- subtitle?: string;
- tagline?: string;
- icon?: React.ReactNode;
- colors?: {
- main: string;
- secondary: string;
- secondary_alt: string;
- type: string;
- type_alt: string;
- dark: string;
- };
-}
-
-const ThemeContext = createContext({});
-
-export { ThemeContext, ContextInterface };