import React from 'react'; import styled, { ThemeProvider } from 'styled-components'; import NoSsr from '@material-ui/core/NoSsr'; import { createMuiTheme } from '@material-ui/core/styles'; import { palette, PaletteProps, spacing, SpacingProps, typography, TypographyProps, } from '@material-ui/system'; const Box = styled.div< PaletteProps & SpacingProps & TypographyProps >`${palette}${spacing}${typography}`; // or import Box from '@material-ui/core/Box'; const theme = createMuiTheme(); export default function Demo() { return ( @material-ui/system ); }