
      import React, { Component } from 'react';

      export default class PinOffIcon 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-pin-off-icon ${this.props.className}`}><path d="M2 5.268L3.277 4 20 20.723 18.732 22l-5.933-5.932v5.93h-1.6v-6H6v-2l2-2v-.73L2 5.268zm14 6.73l2 2v2h-.18L8 6.177V3.998H7v-2h10v2h-1v8z"/></svg>
          )
        }
      }