
      import React, { Component } from 'react';

      export default class PauseOctagonIcon 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-pause-octagon-icon ${this.props.className}`}><path d="M15.728 3L21 8.272v7.456L15.728 21H8.271L3 15.728V8.272L8.271 3h7.457zM15 16V8h-2v8h2zm-4 0V8H9v8h2z"/></svg>
          )
        }
      }