import React from 'react'; import type MdIconProps from './icon.model'; const MdImageIcon64: React.FunctionComponent = ({ className, ...otherProps }: MdIconProps) => { // eslint-disable-next-line no-console console.warn('MdImageIcon is deprecated and will be removed in a future release. Use MdIconImage instead.'); return ( ); }; export default MdImageIcon64;