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