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