import { Percent } from 'moonbeamswap' import React from 'react' import { ONE_BIPS } from '../../constants' import { warningSeverity } from '../../utils/prices' import { ErrorText } from './styleds' /** * Formatted version of price impact text with warning colors */ export default function FormattedPriceImpact({ priceImpact }: { priceImpact?: Percent }) { return ( {priceImpact ? (priceImpact.lessThan(ONE_BIPS) ? '<0.01%' : `${priceImpact.toFixed(2)}%`) : '-'} ) }