import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 32c265.096 0 480 214.904 480 480 0 116.104-41.224 222.584-109.832 305.592a39.072 39.072 0 0 1-2.536 3.032C791.592 925.4 659.576 992 512 992 246.904 992 32 777.096 32 512S246.904 32 512 32zM178.56 276.808A406.136 406.136 0 0 0 104 512c0 225.336 182.664 408 408 408 113.168 0 215.576-46.08 289.488-120.496zM512 104c-111.84 0-213.176 45-286.88 117.888l622.432 522.272A406.12 406.12 0 0 0 920 512c0-225.336-182.664-408-408-408z"></path></svg>
  );
}