
      import React, { Component } from 'react';

      export default class NoteMultipleIcon 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-note-multiple-icon ${this.props.className}`}><path d="M16 9h5.5L16 3.5V9zM7 2h10l6 6v10a2 2 0 0 1-2 2H6.99A1.992 1.992 0 0 1 5 18l.01-14c0-1.104.885-2 1.99-2zM3 6v16h18v2H3c-1.1 0-2-.9-2-2V6h2z"/></svg>
          )
        }
      }