1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/ui/components/app/user-preferenced-currency-input/user-preferenced-currency-input.component.js
2022-01-26 11:48:28 -06:00

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),
)}
/>
);
}
}