
      import React, { Component } from 'react';

      export default class PulseIcon 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-pulse-icon ${this.props.className}`}><path d="M3 13h2.791L10.1 4.794l1.179 8.953 3.207-4.09L17.828 13H21v2h-4l-2.333-2.333-4.75 6.058-.978-7.419L7 15H3v-2z"/></svg>
          )
        }
      }