/ src / components / infoTooltips / MaxLTVTooltip.tsx
MaxLTVTooltip.tsx
 1  import { Trans } from '@lingui/macro';
 2  
 3  import { TextWithTooltip, TextWithTooltipProps } from '../TextWithTooltip';
 4  
 5  export const MaxLTVTooltip = ({ ...rest }: TextWithTooltipProps) => {
 6    return (
 7      <TextWithTooltip {...rest}>
 8        <Trans>
 9          The Maximum LTV ratio represents the maximum borrowing power of a specific collateral. For
10          example, if a collateral has an LTV of 75%, the user can borrow up to 0.75 worth of ETH in
11          the principal currency for every 1 ETH worth of collateral.
12        </Trans>
13      </TextWithTooltip>
14    );
15  };