react-typing-test
Version:
A react component typing test, user input and wpm calculations.
10 lines (9 loc) • 341 B
TypeScript
import React from "react";
import { type ThemeNames, type Theme } from "./themes";
type ThemeProviderProps = {
children: React.ReactNode;
themeName: ThemeNames;
customTheme?: Theme;
};
export declare const StyledThemeProvider: ({ children, themeName, customTheme, }: ThemeProviderProps) => React.JSX.Element;
export {};