import * as React from 'react'; import { Image, Text, View } from '@react-pdf/renderer'; import { styles } from '../styles'; export function Header(props: { title: string; logoDataUrl?: string | null; qrDataUrl?: string | null; isHero?: boolean }): React.ReactElement { const { isHero = false } = props; return ( {props.logoDataUrl ? ( ) : ( KLZ )} {props.title} {props.qrDataUrl ? : null} ); }