import { BallerineLogo } from '@/components/atoms/BallerineLogo'; import { Typography } from '@/components/atoms/Typography'; import { FooterProps } from '@/components/layouts/Footer/types'; import { tw } from '@/theme'; import { View } from '@react-pdf/renderer'; import { FunctionComponent } from 'react'; export const Footer: FunctionComponent = ({ domain, contactEmail, companyName }) => { return ( Report powered by {companyName}. All rights reserved. For support and inquiries:{' '} \ {contactEmail} {domain} ); };