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