aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/view_transaction_button.tsx
blob: 7aa44e657022feef37eae16f65a691cc7ac94cf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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>;
};