
      import React, { Component } from 'react';

      export default class StockingIcon 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-stocking-icon ${this.props.className}`}><path d="M17 2a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2v8a2 2 0 0 1-1.265 1.86l-6.25 2.915a2 2 0 0 1-2.657-.967l-.846-1.813a2 2 0 0 1 .968-2.658L10 14.915V9a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h7zm-7 2v3h7V4h-7z"/></svg>
          )
        }
      }