
      import React, { Component } from 'react';

      export default class ImportIcon 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-import-icon ${this.props.className}`}><path d="M14 12l-4-4v3H2v2h8v3m10 2V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3h2V6h12v12H6v-3H4v3c0 1.1.9 2 2 2h12a2 2 0 0 0 2-2z"/></svg>
          )
        }
      }