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