CollateralTooltip.tsx
1 import { Trans } from '@lingui/macro'; 2 3 import { TextWithTooltip, TextWithTooltipProps } from '../TextWithTooltip'; 4 5 export const CollateralTooltip = ({ ...rest }: TextWithTooltipProps) => { 6 return ( 7 <TextWithTooltip {...rest}> 8 <Trans> 9 The total amount of your assets denominated in USD that can be used as collateral for 10 borrowing assets. 11 </Trans> 12 </TextWithTooltip> 13 ); 14 };