import * as React from 'react';

const DefaultStyles = {
  width: '1em',
  height: '1em',
  verticalAlign: 'middle',
  fill: 'currentColor',
  overflow: 'hidden'
};

export default function WorkshopEntranceWithColor(props = {}) {
  const styles = Object.assign({}, DefaultStyles, props.style);

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M514.08 64C265.512 64 64 265.512 64 514.08c0 248.56 201.512 450.08 450.08 450.08 248.56 0 450.08-201.52 450.08-450.08C964.16 265.512 762.64 64 514.08 64z" fill="#FFFFFF"></path><path d="M428.72 784L514.4 434.08h1.44L602.96 784h112.32l138.24-514.08H742.64L658.4 624.16h-1.44L569.12 269.92H463.28L374 619.84h-1.44L291.2 269.92H178.16L314.24 784z" fill="#0063AB"></path></svg>

  );
}