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