vytal-redux/src/popup/components/FooterLink.tsx
2023-01-16 01:43:48 -05:00

20 lines
373 B
TypeScript

import { Box } from 'theme-ui'
const FooterLink = () => {
return (
<Box
sx={{
color: 'text',
mb: '8px',
fontSize: '11px',
position: 'fixed',
bottom: '0',
}}
>
Vytal does not change your IP address. To change your IP address you will
need a VPN or proxy.
</Box>
)
}
export default FooterLink