Skip to content
This repository was archived by the owner on May 19, 2023. It is now read-only.

Commit 00c0783

Browse files
committed
feat: fixes #110 fixes #111 - adds with spinner hoc and blue logo image
1 parent eb28d14 commit 00c0783

File tree

17 files changed

+383
-72
lines changed

17 files changed

+383
-72
lines changed

.eslintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
"no-script-url": "error",
106106
"no-shadow": "error",
107107
"no-warning-comments": "warn",
108+
"import/prefer-default-export": "off",
108109
"quote-props": [
109110
"error",
110111
"as-needed"
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import logoBlackAndBlue from './logoBlackAndBlue.svg';
2+
import logoBlueIcon from './logoBlueIcon.svg';
23
import logoFullWhite from './logoFullWhite.svg';
34
import rskLogo from './rskLogo.svg';
4-
export { logoBlackAndBlue, logoFullWhite, rskLogo, };
5+
export { logoBlackAndBlue, logoBlueIcon, logoFullWhite, rskLogo, };
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import React from 'react';
2+
import './WithSpinner.css';
3+
declare const WithSpinner: (WrappedComponent: React.ElementType<any>) => ({ isLoading, ...props }: {
4+
[x: string]: any;
5+
isLoading: any;
6+
}) => JSX.Element;
7+
export default WithSpinner;

dist/components/hoc/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import WithSpinner from './WithSpinner';
2+
export { WithSpinner };

dist/components/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export * from './atoms/index';
2+
export * from './hoc/index';
23
export * from './molecules/index';
34
export * from './organisms/index';
45
export * from './templates/index';

dist/index.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,4 +317,9 @@
317317
font-weight: 900;
318318
src: local('Rubik Black'), local('Rubik-Black'), url(https://fonts.gstatic.com/s/rubik/v9/iJWHBXyIfDnIV7FCimmd8WD07oB-.woff2) format('woff2');
319319
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
320-
}
320+
}
321+
@keyframes _WithSpinner__spin__3cx16 {
322+
to {
323+
-webkit-transform: rotate(-360deg);
324+
}
325+
}

0 commit comments

Comments
 (0)