aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/view_transaction_button.tsx
blob: 8d11bf1322f47519452cb3499ff7d5e92f3d0a32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import * as React from 'react';

import { SecondaryButton, SecondaryButtonProps } from './secondary_button';

export interface ViewTransactionButtonProps extends SecondaryButtonProps {
    onClick: () => void;
}

export const ViewTransactionButton: React.StatelessComponent<ViewTransactionButtonProps> = props => {
    return <SecondaryButton {...props}>View Transaction</SecondaryButton>;
};