UNPKG

@mui/material-nextjs

Version:

Collection of utilities for integration between Material UI and Next.js.

9 lines 301 B
import * as React from 'react'; import { EmotionCache } from '@emotion/react'; export interface EmotionCacheProviderProps { emotionCache?: EmotionCache; } export declare function AppCacheProvider({ emotionCache, children }: React.PropsWithChildren<EmotionCacheProviderProps>): React.JSX.Element;