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