import React from 'react';
import ReportProblemIcon from '@material-ui/icons/ReportProblemOutlined';
import MaterialIcon from '../MaterialIcon';

function IconReportProblem(props) {
  return (
    <MaterialIcon {...props}>
      <ReportProblemIcon />
    </MaterialIcon>
  );
}

export default IconReportProblem;
