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