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

function IconInsertChart(props) {
  return (
    <MaterialIcon {...props}>
      <InsertChart />
    </MaterialIcon>
  );
}

export default IconInsertChart;
