
      import React, { Component } from 'react';

      export default class StarIcon 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-icon ${this.props.className}`}><path d="M12 17.27l6.18 3.728-1.636-7.03L22 9.244l-7.19-.618-2.81-6.627L9.19 8.625 2 9.243l5.454 4.726-1.635 7.029L12 17.27z"/></svg>
          )
        }
      }