Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Commit

Permalink
Cleaned up export
Browse files Browse the repository at this point in the history
  • Loading branch information
willemliu committed Jan 23, 2019
1 parent 75e8869 commit e1afe75
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion dist/ButtonCta.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ import { PureComponent } from "react";
export default class ButtonCallToAction extends PureComponent<any, any> {
render(): JSX.Element;
}
export declare const ButtonCallToActionStyles: import("styled-components").GlobalStyleComponent<{}, import("styled-components").DefaultTheme>;
declare const GlobalStyles: import("styled-components").GlobalStyleComponent<{}, import("styled-components").DefaultTheme>;
export { GlobalStyles as ButtonCallToActionStyles };
3 changes: 2 additions & 1 deletion dist/ButtonEditorial.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ import { PureComponent } from "react";
export default class ButtonEditorial extends PureComponent<any, any> {
render(): JSX.Element;
}
export declare const ButtonEditorialStyles: import("styled-components").GlobalStyleComponent<{}, import("styled-components").DefaultTheme>;
declare const GlobalStyles: import("styled-components").GlobalStyleComponent<{}, import("styled-components").DefaultTheme>;
export { GlobalStyles as ButtonEditorialStyles };
2 changes: 1 addition & 1 deletion src/ButtonCta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ const GlobalStyles = createGlobalStyle`
}
`;

export const ButtonCallToActionStyles = GlobalStyles;
export {GlobalStyles as ButtonCallToActionStyles};
2 changes: 1 addition & 1 deletion src/ButtonEditorial.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ const GlobalStyles = createGlobalStyle`
}
`;

export const ButtonEditorialStyles = GlobalStyles;
export {GlobalStyles as ButtonEditorialStyles};

0 comments on commit e1afe75

Please sign in to comment.