import React from 'react'
import PropTypes from 'prop-types'
import { btc } from 'utils'
const Value = ({ value, currency, currentTicker }) => {
if (currency === 'sats') { return {value > 0 ? value : value * -1} }
return (
{btc.convert('sats', currency, value, currentTicker.price_usd)}
)
}
Value.propTypes = {
value: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number
]),
currency: PropTypes.string.isRequired,
currentTicker: PropTypes.object.isRequired
}
export default Value