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

function IconRefresh(props) {
  return (
    <MaterialIcon {...props}>
      <RefreshIcon />
    </MaterialIcon>
  );
}

export default IconRefresh;
