Maybe arrow-{up,down}

This commit is contained in:
Drew DeVault 2017-11-05 17:05:59 -05:00
parent e419cfbe97
commit b1a6eec0a1

View File

@ -15,8 +15,8 @@ export default function Ratio({ up, down }) {
<span>
{`${ratio.toFixed(3)} `}
</span>
<span>({formatAmount(up)} <FontAwesome name="arrow-circle-o-up" /></span>
<span>{` ${formatAmount(up)}`} <FontAwesome name="arrow-circle-o-down" />)</span>
<span>({formatAmount(up)} <FontAwesome name="arrow-up" /></span>
<span>{` ${formatAmount(up)}`} <FontAwesome name="arrow-down" />)</span>
</span>
);
}