/ src / modules / dashboard / lists / ListBottomText.tsx
ListBottomText.tsx
 1  import { Trans } from '@lingui/macro';
 2  import { Typography } from '@mui/material';
 3  
 4  import { Link } from '../../../components/primitives/Link';
 5  
 6  export const ListBottomText = () => {
 7    return (
 8      <Typography variant="secondary14" color="text.secondary">
 9        <Trans>
10          Since this is a test network, you can get any of the assets if you have ETH on your wallet
11        </Trans>
12        <Link href="/faucet" variant="main14" sx={{ ml: 1 }}>
13          <Trans>Faucet</Trans>
14        </Link>
15        .
16      </Typography>
17    );
18  };