
      import React, { Component } from 'react';

      export default class LibraryIcon 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-library-icon ${this.props.className}`}><path d="M12 7.998a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 3.545a13.19 13.19 0 0 0-9-3.545v11a13.19 13.19 0 0 1 9 3.545 13.19 13.19 0 0 1 9-3.545v-11a13.19 13.19 0 0 0-9 3.545z"/></svg>
          )
        }
      }