
      import React, { Component } from 'react';

      export default class WavesIcon 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-waves-icon ${this.props.className}`}><path d="M2 18c2.222-1 4.444-2 6.667-2 2.222 0 4.444 2 6.666 2 2.223 0 4.445-2 6.667-2v3c-2.222 0-4.444 2-6.667 2-2.222 0-4.444-2-6.666-2C6.444 19 4.222 20 2 21v-3zm0-6c2.222-1 4.444-2 6.667-2 2.222 0 4.444 2 6.666 2 2.223 0 4.445-2 6.667-2v3c-2.222 0-4.444 2-6.667 2-2.222 0-4.444-2-6.666-2C6.444 13 4.222 14 2 15v-3zm0-6c2.222-1 4.444-2 6.667-2 2.222 0 4.444 2 6.666 2C17.556 6 19.778 4 22 4v3c-2.222 0-4.444 2-6.667 2-2.222 0-4.444-2-6.666-2C6.444 7 4.222 8 2 9V6z"/></svg>
          )
        }
      }