infinity-forge
Version:
14 lines (13 loc) • 392 B
TypeScript
export type DefaultThemeInfinityForge = {
primaryColor: string;
secondaryColor: string;
darkColor: string;
} & {
[key: string]: string;
};
declare function ThemeProvider({ children, theme }: {
children: React.ReactNode;
theme: DefaultThemeInfinityForge;
}): import("react/jsx-runtime").JSX.Element;
declare function useTheme(): {};
export { ThemeProvider, useTheme };