
      import React, { Component } from 'react';

      export default class WashingMachineIcon 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-washing-machine-icon ${this.props.className}`}><path d="M14.828 11.172a4 4 0 1 1-5.656 5.656l5.656-5.656zM6 2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm1 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm3 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm2 4a6 6 0 1 0 0 12 6 6 0 0 0 0-12z"/></svg>
          )
        }
      }