mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
26 lines
666 B
JavaScript
26 lines
666 B
JavaScript
import React, { PureComponent } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import TokenInput from '../../ui/token-input';
|
|
|
|
export default class UserPreferencedTokenInput extends PureComponent {
|
|
static propTypes = {
|
|
token: PropTypes.shape({
|
|
address: PropTypes.string.isRequired,
|
|
decimals: PropTypes.number,
|
|
symbol: PropTypes.string,
|
|
}).isRequired,
|
|
useNativeCurrencyAsPrimaryCurrency: PropTypes.bool,
|
|
};
|
|
|
|
render() {
|
|
const { useNativeCurrencyAsPrimaryCurrency, ...restProps } = this.props;
|
|
|
|
return (
|
|
<TokenInput
|
|
{...restProps}
|
|
showFiat={!useNativeCurrencyAsPrimaryCurrency}
|
|
/>
|
|
);
|
|
}
|
|
}
|