import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M877.768 821.248a37.648 37.648 0 0 1-53.24 53.248L514.32 564.288l-310.208 310.208a37.648 37.648 0 1 1-53.248-53.248L461.072 511.04 150.864 200.832a37.728 37.728 0 0 1 53.248-53.248L514.32 457.792l310.208-310.208a37.728 37.728 0 0 1 53.24 53.248L567.56 511.04l310.208 310.208z"></path>
</svg>

  );
}