import React from 'react' interface PDFIconProps { className?: string width?: number | string height?: number | string } export const PDFIcon: React.FC = ({ className, width = 40, height = 40, }) => { return ( ) }