
      import React, { Component } from 'react';

      export default class BookOpenIcon 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-book-open-icon ${this.props.className}`}><path d="M12.998 12.002H20v1.5h-7.002m0-4H20v1.5h-7.002m0 3.5H20v1.5h-7.002M21 3.998H2.997A2.007 2.007 0 0 0 1.001 6V19C1.001 20.098 1.9 21 2.998 21H21A2.006 2.006 0 0 0 22.997 19V6A2.006 2.006 0 0 0 21.002 4zm0 15h-8.999V6h9"/></svg>
          )
        }
      }