import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M156 132v760h184v-760h-184z m-4-72h192a68 68 0 0 1 68 68v768a68 68 0 0 1-68 68H152a68 68 0 0 1-68-68V128A68 68 0 0 1 152 60zM489.552 256.976a36 36 0 0 1 28.896-65.952C693.912 267.904 780 457.304 780 752a36 36 0 1 1-72 0c0-269.088-73.912-431.696-218.448-495.024z"></path><path d="M606.544 697.456a36 36 0 0 1 50.912-50.912l112 112a36 36 0 0 1-50.912 50.912l-112-112z"></path><path d="M830.544 646.544a36 36 0 0 1 50.912 50.912l-112 112a36 36 0 0 1-50.912-50.912l112-112zM504 944a36 36 0 0 1 0-72h428a36 36 0 0 1 0 72H504z"></path></svg>
  );
}