import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M908.328 365.528L783.568 490.424a176.088 176.088 0 0 1-171.184 45.368l104.128-104c1.544-1.344 3.2-2.4 4.68-3.816l124.76-124.872a88.272 88.272 0 0 0-124.76-124.912L596.44 303.104l-0.096-0.088-107.896 107.76a176.544 176.544 0 0 1 45.6-170.152l124.768-124.896a176.536 176.536 0 0 1 249.512 249.8z m-605.52 230.488L178.056 720.912a88.264 88.264 0 0 0 124.752 124.896l124.76-124.896c0.864-0.912 1.456-1.936 2.32-2.84L535.424 612.64a176.616 176.616 0 0 1-45.48 170.72l-124.76 124.896a176.544 176.544 0 0 1-249.512-249.816l124.76-124.896a176 176 0 0 1 170.64-45.504L303.696 595.288c-0.296 0.272-0.616 0.456-0.888 0.728z"></path><path d="M362.164891 299.448608m31.112698 31.112699l301.510332 301.510331q31.112698 31.112698 0 62.225397l0 0q-31.112698 31.112698-62.225397 0l-301.510331-301.510332q-31.112698-31.112698 0-62.225396l0 0q31.112698-31.112698 62.225396 0Z"></path></svg>
  );
}