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