/ src / components / infoTooltips / BorrowPowerTooltip.tsx
BorrowPowerTooltip.tsx
 1  import { Trans } from '@lingui/macro';
 2  
 3  import { TextWithTooltip, TextWithTooltipProps } from '../TextWithTooltip';
 4  
 5  export const BorrowPowerTooltip = ({ ...rest }: TextWithTooltipProps) => {
 6    return (
 7      <TextWithTooltip {...rest}>
 8        <Trans>
 9          The % of your total borrowing power used. This is based on the amount of your collateral
10          supplied and the total amount that you can borrow.
11        </Trans>
12      </TextWithTooltip>
13    );
14  };