@lunit/oui
Version:
Lunit Oncology UI components
23 lines (22 loc) • 572 B
TypeScript
/// <reference types="react" />
import { ThemeOptions } from '@mui/material';
declare module '@mui/material/styles' {
interface Theme {
leftDrawer: {
width: React.CSSProperties['width'];
};
rightDrawer: {
width: React.CSSProperties['width'];
};
}
interface ThemeOptions {
leftDrawer: {
width: React.CSSProperties['width'];
};
rightDrawer: {
width: React.CSSProperties['width'];
};
}
}
declare const drawer: ThemeOptions;
export default drawer;