aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/placing_order_button.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/instant/src/components/placing_order_button.tsx')
-rw-r--r--packages/instant/src/components/placing_order_button.tsx18
1 files changed, 0 insertions, 18 deletions
diff --git a/packages/instant/src/components/placing_order_button.tsx b/packages/instant/src/components/placing_order_button.tsx
deleted file mode 100644
index 528a305dc..000000000
--- a/packages/instant/src/components/placing_order_button.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import * as React from 'react';
-
-import { ColorOption } from '../style/theme';
-
-import { Button } from './ui/button';
-import { Container } from './ui/container';
-import { Spinner } from './ui/spinner';
-
-export const PlacingOrderButton: React.StatelessComponent<{}> = props => (
- <Button isDisabled={true} width="100%" fontColor={ColorOption.white}>
- <Container display="inline-block" position="relative" top="3px" marginRight="8px">
- <Spinner widthPx={16} heightPx={16} />
- </Container>
- Placing Order&hellip;
- </Button>
-);
-
-PlacingOrderButton.displayName = 'PlacingOrderButton';