/* eslint-disable react/prop-types */
import React from 'react';
import { Svg, Path } from '@react-pdf/renderer';
export const LogoWhite = ({ width = 140 }) => {
const height = width * (99 / 295);
return (
);
};
export const LogoBlue = ({ width = 140 }) => {
const height = width * (99 / 295);
return (
);
};