mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
21 lines
497 B
JavaScript
21 lines
497 B
JavaScript
import React, { PureComponent } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import TokenInput from '../token-input'
|
|
|
|
export default class UserPreferencedTokenInput extends PureComponent {
|
|
static propTypes = {
|
|
useNativeCurrencyAsPrimaryCurrency: PropTypes.bool,
|
|
}
|
|
|
|
render () {
|
|
const { useNativeCurrencyAsPrimaryCurrency, ...restProps } = this.props
|
|
|
|
return (
|
|
<TokenInput
|
|
{...restProps}
|
|
showFiat={!useNativeCurrencyAsPrimaryCurrency}
|
|
/>
|
|
)
|
|
}
|
|
}
|