import React from 'react'; import { ThemeProvider, useTheme } from '@material-ui/core/styles'; interface MyTheme { spacing: string; } function DeepChild() { const theme = useTheme(); return {`spacing ${theme.spacing}`}; } export default function UseTheme() { return ( theme={{ spacing: '8px', }} > ); }