Files
goTorrent/goTorrentWebUI/node_modules/material-ui/styles/withTheme.d.ts

12 lines
233 B
TypeScript

import { Theme } from './createMuiTheme';
export interface WithTheme {
theme: Theme;
}
declare const withTheme: () => <P>(
component: React.ComponentType<P & WithTheme>,
) => React.ComponentClass<P>;
export default withTheme;