import React from 'react' import { Svg, Path } from '@react-pdf/renderer' interface LogoPDFSvgProps { color?: string size?: number style?: object } export const LogoPDF: React.FC = ({ color = '#000', size = 100, style, ...rest }) => ( )