UNPKG

@material-ui/core

Version:

Quickly build beautiful React apps. Material-UI 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.

21 lines (18 loc) 497 B
import { GlobalStylesProps as StyledGlobalStylesProps } from '@material-ui/system'; export interface GlobalStylesProps { /** * The styles you want to apply globally. */ styles: StyledGlobalStylesProps['styles']; } /** * * Demos: * * - [How To Customize](https://material-ui.com/customization/how-to-customize/) * * API: * * - [GlobalStyles API](https://material-ui.com/api/global-styles/) */ export default function GlobalStyles(props: GlobalStylesProps): React.ReactElement;