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