UNPKG

@mui/styled-engine

Version:

styled() API wrapper package for emotion.

12 lines (9 loc) 303 B
import * as React from 'react'; import { Interpolation } from '@emotion/react'; export interface GlobalStylesProps<Theme = {}> { defaultTheme?: object; styles: Interpolation<Theme>; } export default function GlobalStyles<Theme = {}>( props: GlobalStylesProps<Theme>, ): React.ReactElement<any>;