
      import React, { Component } from 'react';

      export default class CreditCardScanIcon 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-credit-card-scan-icon ${this.props.className}`}><path d="M2 4h4V2H2C.9 2 0 2.9 0 4v4h2V4zm20-2h-4v2h4v4h2V4c0-1.1-.9-2-2-2zM2 16H0v4c0 1.1.9 2 2 2h4v-2H2v-4zm20 4h-4v2h4c1.1 0 2-.9 2-2v-4h-2v4zM4 8v8c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2zm2 8v-4h12v4H6zm12-8v2H6V8h12z"/></svg>
          )
        }
      }