mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
21 lines
519 B
JavaScript
21 lines
519 B
JavaScript
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,
|
|
};
|
|
|
|
render() {
|
|
const { useNativeCurrencyAsPrimaryCurrency, ...restProps } = this.props;
|
|
|
|
return (
|
|
<CurrencyInput
|
|
{...restProps}
|
|
useFiat={!useNativeCurrencyAsPrimaryCurrency}
|
|
/>
|
|
);
|
|
}
|
|
}
|