aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/instant_heading.tsx
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-10-30 08:02:46 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-10-30 08:02:46 +0800
commit475698ed92dc6310591ec9d0653eaa931d7e03f6 (patch)
tree1698fb00bafe6a4a9fb4d88bbbdfc1f4d102b055 /packages/instant/src/components/instant_heading.tsx
parent48ff13e3e22bf9f71bc1a367f86aaa0ae89989ae (diff)
downloaddexon-sol-tools-475698ed92dc6310591ec9d0653eaa931d7e03f6.tar
dexon-sol-tools-475698ed92dc6310591ec9d0653eaa931d7e03f6.tar.gz
dexon-sol-tools-475698ed92dc6310591ec9d0653eaa931d7e03f6.tar.bz2
dexon-sol-tools-475698ed92dc6310591ec9d0653eaa931d7e03f6.tar.lz
dexon-sol-tools-475698ed92dc6310591ec9d0653eaa931d7e03f6.tar.xz
dexon-sol-tools-475698ed92dc6310591ec9d0653eaa931d7e03f6.tar.zst
dexon-sol-tools-475698ed92dc6310591ec9d0653eaa931d7e03f6.zip
feat: add basic panel component and other small improvements
Diffstat (limited to 'packages/instant/src/components/instant_heading.tsx')
-rw-r--r--packages/instant/src/components/instant_heading.tsx8
1 files changed, 3 insertions, 5 deletions
diff --git a/packages/instant/src/components/instant_heading.tsx b/packages/instant/src/components/instant_heading.tsx
index 1ef276ff3..81aa62a77 100644
--- a/packages/instant/src/components/instant_heading.tsx
+++ b/packages/instant/src/components/instant_heading.tsx
@@ -8,9 +8,7 @@ import { AsyncProcessState, OrderProcessState, OrderState } from '../types';
import { format } from '../util/format';
import { AmountPlaceholder } from './amount_placeholder';
-import { Container, Flex, Text } from './ui';
-import { Icon } from './ui/icon';
-import { Spinner } from './ui/spinner';
+import { Container, Flex, Icon, Spinner, Text } from './ui';
export interface InstantHeadingProps {
selectedAssetAmount?: BigNumber;
@@ -72,11 +70,11 @@ export class InstantHeading extends React.Component<InstantHeadingProps, {}> {
const processState = this.props.buyOrderState.processState;
if (processState === OrderProcessState.FAILURE) {
- return <Icon icon={'failed'} width={ICON_WIDTH} height={ICON_HEIGHT} color={ICON_COLOR} />;
+ return <Icon icon="failed" width={ICON_WIDTH} height={ICON_HEIGHT} color={ICON_COLOR} />;
} else if (processState === OrderProcessState.PROCESSING) {
return <Spinner widthPx={ICON_HEIGHT} heightPx={ICON_HEIGHT} />;
} else if (processState === OrderProcessState.SUCCESS) {
- return <Icon icon={'success'} width={ICON_WIDTH} height={ICON_HEIGHT} color={ICON_COLOR} />;
+ return <Icon icon="success" width={ICON_WIDTH} height={ICON_HEIGHT} color={ICON_COLOR} />;
}
return undefined;
}