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