
      import React, { Component } from 'react';

      export default class CloudPrintIcon 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-cloud-print-icon ${this.props.className}`}><path d="M12 2C9.11 2 6.6 3.64 5.35 6.04A5.995 5.995 0 0 0 0 12c0 3.31 2.69 6 6 6v4h12v-4h1c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96A7.489 7.489 0 0 0 12 2zM8 13h8v7H8v-7zm1 1v1h6v-1H9zm0 2v1h6v-1H9zm0 2v1h6v-1H9z"/></svg>
          )
        }
      }