
      import React, { Component } from 'react';

      export default class FileMoveIcon extends Component {
        static defaultProps = {
          className: ''
        };

        constructor(props) {
          super(props);
        }

        render() {
          return (
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-file-move-icon ${this.props.className}`}><path d="M6.001 1.998H14l6.001 6V20a2.001 2.001 0 0 1-2.003 1.997H5.991A1.993 1.993 0 0 1 4 20l.01-16.001c0-1.104.883-2.002 1.992-2.002zM12 14l-6-.003v3.004l6 .003V19l3.999-3.501L12 12.004V14zm.998-10.504v5.503H18.5l-5.504-5.503z"/></svg>
          )
        }
      }