ReadOnlyModeTooltip.tsx
1 import { Trans } from '@lingui/macro'; 2 3 import { TextWithTooltip, TextWithTooltipProps } from '../TextWithTooltip'; 4 5 export const ReadOnlyModeTooltip = ({ ...rest }: TextWithTooltipProps) => { 6 return ( 7 <TextWithTooltip {...rest}> 8 <Trans> 9 Read-only mode allows to see address positions in Aave, but you won't be able to 10 perform transactions. 11 </Trans> 12 </TextWithTooltip> 13 ); 14 };