mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
29 lines
761 B
JavaScript
29 lines
761 B
JavaScript
import React, { PureComponent } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import CurrencyInput from '../currency-input';
|
|
|
|
export default class UserPreferencedCurrencyInput extends PureComponent {
|
|
static propTypes = {
|
|
useNativeCurrencyAsPrimaryCurrency: PropTypes.bool,
|
|
sendInputCurrencySwitched: PropTypes.bool,
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
useNativeCurrencyAsPrimaryCurrency,
|
|
sendInputCurrencySwitched,
|
|
...restProps
|
|
} = this.props;
|
|
|
|
return (
|
|
<CurrencyInput
|
|
{...restProps}
|
|
featureSecondary={Boolean(
|
|
(useNativeCurrencyAsPrimaryCurrency && sendInputCurrencySwitched) ||
|
|
(!useNativeCurrencyAsPrimaryCurrency && !sendInputCurrencySwitched),
|
|
)}
|
|
/>
|
|
);
|
|
}
|
|
}
|