import React from 'react'; import { Svg, G, Path } from '@react-pdf/renderer'; export const KLZLogoVector = ({ width, color }: { width: number; color: string }) => { // Original viewBox was 0 0 295 99, so height is width * 99 / 295 const height = width * (99 / 295); return ( ); };