UNPKG

@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
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").PaperProps> | undefined; styleOverrides?: Partial<import("@mui/material/styles/overrides").OverridesStyleRules<keyof import("@mui/material").PaperClasses, "MuiPaper", Omit<Theme, "components" | "palette"> & CssVarsTheme>> | undefined; variants?: { props: Partial<import("@mui/material").PaperProps> | ((props: Partial<import("@mui/material").PaperProps> & { ownerState: Partial<import("@mui/material").PaperProps>; }) => boolean); style: import("@mui/styled-engine").Interpolation<{ theme: Omit<Theme, "components" | "palette"> & CssVarsTheme; }>; }[] | undefined; } | undefined; export default _default;