
      import React, { Component } from 'react';

      export default class PrinterSettingsIcon 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-printer-settings-icon ${this.props.className}`}><path d="M18 1.998v4H6v-4h12zm1 9a1 1 0 1 0 0-2 1 1 0 1 0 0 2zm-3 7v-5H8v5h8zm3-11a3 3 0 0 1 3 3v6h-4v4H6v-4H2v-6c0-1.656 1.343-3 3-3h14zM15 24v-2h2v2h-2zm-4 0v-2h2v2h-2zm-4 0v-2h2v2H7z"/></svg>
          )
        }
      }