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

21 lines
519 B
JavaScript
Raw Normal View History

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import CurrencyInput from '../../ui/currency-input';
export default class UserPreferencedCurrencyInput extends PureComponent {
static propTypes = {
useNativeCurrencyAsPrimaryCurrency: PropTypes.bool,
};
2020-11-03 00:41:28 +01:00
render() {
const { useNativeCurrencyAsPrimaryCurrency, ...restProps } = this.props;
return (
<CurrencyInput
{...restProps}
useFiat={!useNativeCurrencyAsPrimaryCurrency}
/>
);
}
}