18 lines
345 B
TypeScript
18 lines
345 B
TypeScript
|
import { formatUsdValue } from '../utils'
|
||
|
|
||
|
const PnlText = ({ className, pnl }: { className?: string; pnl?: number }) => (
|
||
|
<>
|
||
|
{pnl ? (
|
||
|
<span
|
||
|
className={`${className} ${pnl > 0 ? 'text-th-green' : 'text-th-red'}`}
|
||
|
>
|
||
|
{formatUsdValue(pnl)}
|
||
|
</span>
|
||
|
) : (
|
||
|
'--'
|
||
|
)}
|
||
|
</>
|
||
|
)
|
||
|
|
||
|
export default PnlText
|