
      import React, { Component } from 'react';

      export default class StarOfDavidIcon 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-of-david-icon ${this.props.className}`}><path d="M12 2l2.887 5h5.773l-2.887 5 2.887 5h-5.773L12 22l-2.887-5H3.34l2.886-5L3.34 7h5.773L12 2zm5.196 13l-.577-1-.578 1h1.155zM12 6l-.577 1h1.154L12 6zm-5.196 9h1.155l-.578-1-.577 1zm10.392-6h-1.155l.578 1 .577-1zM12 18l.577-1h-1.154L12 18zM6.804 9l.577 1 .578-1H6.804zm8.66 3l-1.732-3h-3.464l-1.732 3 1.732 3h3.464l1.732-3z"/></svg>
          )
        }
      }