mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-12 04:37:13 +01:00
925a19fa4a
This reverts commitf09ab88891
, reversing changes made toeffc761e0e
. This is being temporarily reverted to make it easier to release an urgent fix for v10.15.1.
37 lines
1001 B
JavaScript
37 lines
1001 B
JavaScript
import React from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
|
|
import Box from '../../../ui/box/box';
|
|
import Button from '../../../ui/button';
|
|
import { useI18nContext } from '../../../../hooks/useI18nContext';
|
|
import { getDetectedTokensInCurrentNetwork } from '../../../../selectors';
|
|
|
|
const DetectedTokensLink = ({ className = '', onClick }) => {
|
|
const t = useI18nContext();
|
|
const detectedTokens = useSelector(getDetectedTokensInCurrentNetwork);
|
|
|
|
return (
|
|
<Box
|
|
className={classNames('detected-tokens-link', className)}
|
|
marginTop={1}
|
|
>
|
|
<Button
|
|
type="link"
|
|
className="detected-tokens-link__link"
|
|
onClick={onClick}
|
|
>
|
|
{t('numberOfNewTokensDetected', [detectedTokens.length])}
|
|
</Button>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
DetectedTokensLink.propTypes = {
|
|
onClick: PropTypes.func.isRequired,
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
export default DetectedTokensLink;
|