
      import React, { Component } from 'react';

      export default class StarOffIcon 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-star-off-icon ${this.props.className}`}><path d="M2 5.268L3.277 4 20 20.723 18.732 22l-1.687-1.686L12 17.27l-6.18 3.727 1.635-7.03L2 9.244l3.66-.315L2 5.268zm10-3.27l2.808 6.627L22 9.243l-5.455 4.726.229.98-7.208-7.207 2.434-5.744z"/></svg>
          )
        }
      }