
      import React, { Component } from 'react';

      export default class WeightIcon 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-weight-icon ${this.props.className}`}><path d="M12 3a4 4 0 0 1 3.465 6H18a2 2 0 0 1 1.95 1.557C21.966 18.568 22 18.78 22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2c0-.22.036-.432 2.05-8.443A2 2 0 0 1 6 9h2.535A4 4 0 0 1 12 3zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z"/></svg>
          )
        }
      }