
      import React, { Component } from 'react';

      export default class CursorPointerIcon 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-cursor-pointer-icon ${this.props.className}`}><path d="M10 2a2 2 0 0 1 2 2v4.5s2-.25 2 .75c0 0 2-.25 2 .75 0 0 2-.25 2 .75 0 0 2-.25 2 .75V15c0 1-3 6-3 7H9s-2-7-5-9c0 0-1-6 4-1V4a2 2 0 0 1 2-2z"/></svg>
          )
        }
      }