import React, { createContext, useContext, ReactNode } from 'react'; import { QwikTheme, qwikTheme } from './tokens'; const ThemeContext = createContext(qwikTheme); export const ThemeProvider = ({ children, theme = qwikTheme, }: { children: ReactNode; theme?: QwikTheme; }) => { return {children}; }; export const useTheme = () => useContext(ThemeContext);