import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M284.44 279.752h422.224c37.04 0 66.664 29.472 66.664 66.32v379.504c0 36.848-29.624 66.32-66.664 66.32H284.44c-37.04 0-66.664-29.472-66.664-66.32V342.4c3.704-33.168 33.336-62.64 66.664-62.64z" opacity=".853"></path><path d="M532.592 976.128H147.408c-62.96 0-114.816-47.904-114.816-110.536V202.376c0-62.64 51.848-110.536 114.816-110.536h696.296c62.96 0 114.808 47.896 114.808 110.536v350.032c0 22.104-14.808 36.84-37.04 36.84-22.216 0-37.032-14.736-37.032-36.84V202.376c0-22.104-18.52-36.848-40.736-36.848H147.408c-22.224 0-40.744 14.744-40.744 36.848V865.6c0 22.104 18.52 36.84 40.744 36.84h385.184c22.216 0 37.04 14.744 37.04 36.848s-14.824 36.848-37.04 36.848z"></path><path d="M662.216 467.664H254.808c-22.216 0-37.04-14.744-37.04-36.848s14.824-36.848 37.04-36.848h407.408c22.224 0 37.04 14.744 37.04 36.848s-14.816 36.848-37.04 36.848zM514.08 651.888H254.8c-22.216 0-37.04-14.736-37.04-36.848 0-22.104 14.824-36.84 37.04-36.84H514.08c22.224 0 37.04 14.736 37.04 36.84 0 22.112-14.816 36.848-37.04 36.848zM232.592 32.888h74.072v210.016h-74.08V32.888z m422.216 0h74.08v210.016h-74.08V32.888z"></path><path d="M754.808 990.864c-7.4 0-14.808-3.68-22.216-7.368L602.96 880.32c-14.816-11.056-18.52-36.848-3.704-51.584 11.112-14.736 37.04-18.424 51.856-3.68l100 81.056 177.776-187.912c14.816-14.736 37.04-14.736 51.848 0 14.816 14.736 14.816 36.848 0 51.584l-200 210.016c-7.408 7.368-18.52 11.056-25.92 11.056z"></path></svg>
  );
}