@nexusui/theme
Version:
This is a simple MUI theme drop in for your React application, which aims to be the source of truth for the NexusUI Design system.
20 lines (19 loc) • 1.07 kB
TypeScript
import { CssVarsTheme, Theme } from '@mui/material/styles';
/**
* Because there is no targetable component for the outermost element of the Date Pickers, we have
* to style them in the context of their parent container(s). This is one of the possible containers
* that could be used to render a DatePicker component.
*/
declare const _default: {
defaultProps?: Partial<import("@mui/material").ModalProps> | undefined;
styleOverrides?: Partial<import("@mui/material/styles/overrides").OverridesStyleRules<keyof import("@mui/material").ModalClasses, "MuiModal", Omit<Theme, "components" | "palette"> & CssVarsTheme>> | undefined;
variants?: {
props: Partial<import("@mui/material").ModalProps> | ((props: Partial<import("@mui/material").ModalProps> & {
ownerState: Partial<import("@mui/material").ModalProps>;
}) => boolean);
style: import("@mui/styled-engine").Interpolation<{
theme: Omit<Theme, "components" | "palette"> & CssVarsTheme;
}>;
}[] | undefined;
} | undefined;
export default _default;