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