2021-07-06 23:10:31 +00:00
|
|
|
declare module "@material-ui/core/styles/createTheme" {
|
2021-01-20 12:07:40 +00:00
|
|
|
interface Theme {
|
|
|
|
custom: {
|
|
|
|
icon: React.CSSProperties["color"];
|
|
|
|
loadingBar: React.CSSProperties["color"];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
interface ThemeOptions {
|
|
|
|
custom: {
|
|
|
|
icon: React.CSSProperties["color"];
|
|
|
|
loadingBar: React.CSSProperties["color"];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-19 08:20:43 +00:00
|
|
|
export { default as Light } from "@themes/Light";
|
|
|
|
export { default as Dark } from "@themes/Dark";
|
|
|
|
export { default as Grey } from "@themes/Grey";
|