UNPKG

548 BTypeScriptView Raw
1import { GlobalStylesProps as StyledGlobalStylesProps } from '@mui/system';
2import { Theme } from '../styles';
3
4export interface GlobalStylesProps {
5 /**
6 * The styles you want to apply globally.
7 */
8 styles: StyledGlobalStylesProps<Theme>['styles'];
9}
10
11/**
12 *
13 * Demos:
14 *
15 * - [How to customize](https://mui.com/material-ui/customization/how-to-customize/)
16 *
17 * API:
18 *
19 * - [GlobalStyles API](https://mui.com/material-ui/api/global-styles/)
20 */
21export default function GlobalStyles(props: GlobalStylesProps): React.ReactElement<unknown>;