Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

typescript react theme-provider

// import original module declarations
import 'styled-components';
// and extend them!
declare module 'styled-components' {
  export interface DefaultTheme {
    borderRadius: string;
    colors: {
      main: string;
      secondary: string;
    };
  }
}
Source by blog.agney.dev #
 
PREVIOUS NEXT
Tagged: #typescript #react
ADD COMMENT
Topic
Name
9+7 =