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