import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M956.312 510.16a16 16 0 1 1-32 0c0-233.152-189.008-422.16-422.16-422.16C269.008 88 80 277.008 80 510.16c0 233.144 189.008 422.152 422.16 422.152a16 16 0 0 1 0 32C251.328 964.312 48 760.976 48 510.152 48 259.336 251.336 56 502.16 56c250.816 0 454.152 203.336 454.152 454.16z"></path><path d="M488.296 530.352V239.88a16 16 0 1 1 32 0v297.456a16 16 0 0 1-5.112 11.72L351.616 700.96a16 16 0 1 1-21.776-23.44l158.456-147.168z"></path><path d="M636.832 968.464a16 16 0 1 1 0-32h331.32a16 16 0 1 1 0 32H636.832zM636.832 645.44a16 16 0 1 1 0-32h331.32a16 16 0 1 1 0 32H636.832z"></path><path d="M954.032 942.776h-32c0-76.488-54-137.736-119.544-137.736-65.536 0-119.536 61.248-119.536 137.736h-32c0-93.328 67.36-169.736 151.536-169.736s151.544 76.408 151.544 169.736z"></path><path d="M923.912 635.92h32c0 93.328-67.36 169.744-151.544 169.744-84.168 0-151.536-76.416-151.536-169.736h32c0 76.48 54 137.736 119.536 137.736 65.544 0 119.544-61.248 119.544-137.736z"></path></svg>
  );
}