1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00
metamask-extension/ui/components/app/user-preferenced-currency-input/user-preferenced-currency-input.component.js

29 lines
761 B
JavaScript
Raw Normal View History

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,
};
2020-11-03 00:41:28 +01:00
render() {
const {
useNativeCurrencyAsPrimaryCurrency,
sendInputCurrencySwitched,
...restProps
} = this.props;
return (
<CurrencyInput
{...restProps}
featureSecondary={Boolean(
(useNativeCurrencyAsPrimaryCurrency && sendInputCurrencySwitched) ||
(!useNativeCurrencyAsPrimaryCurrency && !sendInputCurrencySwitched),
)}
/>
);
}
}