Skip to content
Snippets Groups Projects
styled-components.d.ts 235 B
Newer Older
  • Learn to ignore specific revisions
  • import { Theme } from '@material-ui/core/styles';
    import 'styled-components';
    
    declare module 'styled-components' {
      // eslint-disable-next-line @typescript-eslint/no-empty-interface
      export interface DefaultTheme extends Theme {}
    }