UNPKG

@mui/material-nextjs

Version:

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

7 lines (6 loc) 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;