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