
      import React, { Component } from 'react';

      export default class GasCylinderIcon 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-gas-cylinder-icon ${this.props.className}`}><path d="M16 9v11a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V9a4.002 4.002 0 0 1 3-3.874V4H9V2h6v2h-2v1.126c1.725.444 3 2.01 3 3.874z"/></svg>
          )
        }
      }