import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 992c265.096 0 480-214.904 480-480S777.096 32 512 32 32 246.904 32 512s214.904 480 480 480z m0-72c-225.336 0-408-182.664-408-408s182.664-408 408-408 408 182.664 408 408-182.664 408-408 408z"></path><path d="M316.84 459.8l175.36 175.36a36 36 0 1 1-50.912 50.912l-175.36-175.36a36 36 0 1 1 50.912-50.912z"></path><path d="M758.08 369.288a36 36 0 0 1 0 50.912L492.192 686.08a36 36 0 1 1-50.912-50.912l265.872-265.872a36 36 0 0 1 50.912 0z"></path></svg>
  );
}