@mui/material
Version:
Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.
22 lines (19 loc) • 515 B
TypeScript
import { GlobalStylesProps as StyledGlobalStylesProps } from '@mui/system';
import { Theme } from '../styles';
export interface GlobalStylesProps {
/**
* The styles you want to apply globally.
*/
styles: StyledGlobalStylesProps<Theme>['styles'];
}
/**
*
* Demos:
*
* - [How To Customize](https://mui.com/customization/how-to-customize/)
*
* API:
*
* - [GlobalStyles API](https://mui.com/api/global-styles/)
*/
export default function GlobalStyles(props: GlobalStylesProps): React.ReactElement;