
      import React, { Component } from 'react';

      export default class VolumePlusIcon 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-volume-plus-icon ${this.props.className}`}><path d="M3 9h4l5-5v16l-5-5H3V9zm11 2h3V8h2v3h3v2h-3v3h-2v-3h-3v-2z"/></svg>
          )
        }
      }