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