import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M732 776a36 36 0 1 1 72 0v88c0 55.128-44.32 100-99.208 100H191.2c-54.888 0-99.208-44.872-99.208-100V160c0-55.128 44.32-100 99.208-100H704.8C759.68 60 804 104.872 804 160v88a36 36 0 1 1-72 0V160c0-15.56-12.28-28-27.208-28H191.2c-14.928 0-27.208 12.44-27.208 28v704c0 15.56 12.28 28 27.208 28H704.8c14.928 0 27.208-12.44 27.208-28V776z"></path><path d="M770.544 409.456a36 36 0 0 1 50.912-50.912l129.704 129.704a36 36 0 0 1 0 50.912l-129.704 129.704a36 36 0 0 1-50.912-50.912l104.248-104.24-104.248-104.256z"></path><path d="M904.336 476a36 36 0 1 1 0 72H509.248a36 36 0 1 1 0-72h395.088z"></path></svg>
  );
}