19 lines
515 B
TypeScript
19 lines
515 B
TypeScript
|
declare module "@material-ui/core/styles/createMuiTheme" {
|
||
|
interface Theme {
|
||
|
custom: {
|
||
|
icon: React.CSSProperties["color"];
|
||
|
loadingBar: React.CSSProperties["color"];
|
||
|
};
|
||
|
}
|
||
|
interface ThemeOptions {
|
||
|
custom: {
|
||
|
icon: React.CSSProperties["color"];
|
||
|
loadingBar: React.CSSProperties["color"];
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export { default as Light } from "./Light";
|
||
|
export { default as Dark } from "./Dark";
|
||
|
export { default as Grey } from "./Grey";
|