@waweb/uikit.theme.theme-provider
Version:
17 lines (16 loc) • 507 B
TypeScript
import * as createMuiTheme from "@material-ui/core/styles/createMuiTheme";
import { Theme, ThemeOptions } from "@material-ui/core/styles/createMuiTheme";
declare module "@material-ui/core/styles/createMuiTheme" {
interface Theme {
layout: {
contentWidth: number | string;
};
}
interface ThemeOptions {
layout?: {
contentWidth: number | string;
};
}
}
export default createMuiTheme;
export type { Theme, ThemeOptions, createMuiTheme };