
      import React, { Component } from 'react';

      export default class BarrelIcon 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-barrel-icon ${this.props.className}`}><path d="M18 19h1v2H5v-2h1v-6H5v-2h1V5H5V3h14v2h-1v6h1v2h-1v6zm-9-6a3 3 0 1 0 6 0c0-2-3-5.375-3-5.375S9 11 9 13z"/></svg>
          )
        }
      }