aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/view_transaction_button.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/instant/src/components/view_transaction_button.tsx')
-rw-r--r--packages/instant/src/components/view_transaction_button.tsx11
1 files changed, 0 insertions, 11 deletions
diff --git a/packages/instant/src/components/view_transaction_button.tsx b/packages/instant/src/components/view_transaction_button.tsx
deleted file mode 100644
index 7aa44e657..000000000
--- a/packages/instant/src/components/view_transaction_button.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-import * as React from 'react';
-
-import { SecondaryButton } from './secondary_button';
-
-export interface ViewTransactionButtonProps {
- onClick: () => void;
-}
-
-export const ViewTransactionButton: React.StatelessComponent<ViewTransactionButtonProps> = props => {
- return <SecondaryButton onClick={props.onClick}>View Transaction</SecondaryButton>;
-};