Files
klz-cables.com/scripts/pdf/react-pdf/components/Header.tsx
Marc Mintel ae381442aa
All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 11s
Build & Deploy / 🧪 QA (push) Successful in 1m25s
Build & Deploy / 🏗️ Build (push) Successful in 2m51s
Build & Deploy / 🚀 Deploy (push) Successful in 16s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 1m18s
Build & Deploy / 🔔 Notify (push) Successful in 2s
Nightly QA / 💨 Smoke & Health (push) Successful in 1m1s
fix(datasheets): update PDF datasheets and generator for Class 2 conductor spec on NA cables
2026-08-18 19:51:14 +02:00

45 lines
1.1 KiB
TypeScript

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 (
<View
style={
isHero
? styles.header
: [
styles.header,
{
paddingHorizontal: 0,
backgroundColor: 'transparent',
borderBottomWidth: 0,
marginBottom: 24,
paddingTop: 40,
},
]
}
>
<View style={styles.headerLeft}>
{props.logoDataUrl ? (
<Image src={props.logoDataUrl} style={styles.logo} />
) : (
<Text style={styles.brandFallback}>KLZ</Text>
)}
</View>
<View style={styles.headerRight}>
<Text style={styles.headerTitle}>{props.title}</Text>
{props.qrDataUrl ? <Image src={props.qrDataUrl} style={styles.qr} /> : null}
</View>
</View>
);
}