import { createContext } from "react"; export type Theme = "dark" | "light" | "system"; export type ThemeProviderState = { theme: Theme; setTheme: (theme: Theme) => void; }; export const ThemeProviderContext = createContext({ theme: "system", setTheme: () => null, });