import React from 'react'; import { integerToCurrency } from 'loot-core/src/shared/util'; import { Block } from 'loot-design/src/components/common'; import { colors, styles } from 'loot-design/src/style'; function Change({ amount, style }) { return ( {amount >= 0 ? '+' : ''} {integerToCurrency(amount)} ); } export default Change;