lbry-desktop/ui/component/common/transaction-link.jsx
2019-11-11 13:27:29 -05:00

19 lines
362 B
JavaScript

// @flow
import React from 'react';
import Button from 'component/button';
type Props = {
id: string,
};
const TransactionLink = (props: Props) => {
const { id } = props;
const href = `https://explorer.lbry.com/tx/${id}`;
const label = id.substr(0, 7);
return <Button button="link" href={href} label={label} />;
};
export default TransactionLink;