
      import React, { Component } from 'react';

      export default class CreditCardMultipleIcon 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-multiple-icon ${this.props.className}`}><path d="M20.999 7.999v-2h-14v2h14zm0 8v-5h-14v4.999h14zm0-12c1.105 0 2 .894 2 2v10c0 1.106-.895 2-2 2l-14-.001c-1.105 0-2-.894-2-2l.01-10c0-1.106.885-2 1.99-2L21 4zM3 20h15v2H3c-1.105 0-2-.895-2-2V9h2v11z"/></svg>
          )
        }
      }