import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 67.39c-245.56 0-444.605 199.06-444.605 444.605C67.395 757.54 266.44 956.61 512 956.61S956.605 757.54 956.605 511.995 757.56 67.389 512 67.389z m0.118 821.693c-208.266 0-377.078-168.842-377.078-377.093s168.812-377.078 377.078-377.078c208.271 0 377.078 168.827 377.078 377.078S720.384 889.083 512.118 889.083z"></path><path d="M523.126 251.786c-52.675 0-96.036 13.348-126.725 39.363-27.326 22.671-40.679 45.343-54.682 94.044l56.038 8.668c7.327-28.017 12.672-40.694 23.988-55.357 22.005-27.356 56.038-42.025 99.374-42.025 63.365 0 107.407 34.683 107.407 84.705 0 19.999-8.002 39.347-23.362 55.363-9.99 9.999-21.33 19.333-45.348 36.009-38.697 26.675-45.343 32.02-58.69 50.022-17.342 23.342-24.669 45.343-24.669 80.04 0 22.007 0 27.357-2.662 43.367h57.338c-1.981-14.71-2.662-26.025-2.662-36.69 0-26.025 5.35-44.692 17.341-61.368 9.334-13.338 20.68-22.687 60.027-50.022 36.69-26.01 48.686-38.016 60.703-58.03 10.665-18.673 15.98-39.353 15.98-64.697 0.005-71.373-67.354-123.392-159.396-123.392zM470.451 708.67h64.697v62.684H470.45v-62.685z"></path></svg>
  );
}