
      import React, { Component } from 'react';

      export default class BlindsIcon 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-blinds-icon ${this.props.className}`}><path d="M3 2h18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-1v7a1 1 0 0 1-1 1h-6v2.17a3.001 3.001 0 1 1-2 0V14H5a1 1 0 0 1-1-1V6H3a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1zm9 16a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/></svg>
          )
        }
      }