import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M140 188h584V352h76V144c0-17.704-14.296-32-32-32H96c-17.704 0-32 14.296-32 32v736c0 17.704 14.296 32 32 32h544v-76H140v-648zM414.304 256h-60.6c-3.4 0-6.4 2.2-7.6 5.4l-127.104 368a7.456 7.456 0 0 0-0.4 2.6c0 4.4 3.6 8 8 8h55.096c3.4 0 6.4-2.2 7.6-5.4L322 540h196.2L422 261.4c-1.304-3.2-4.304-5.4-7.696-5.4z m12.4 228H341.2L384 360.2 426.696 484zM936 528h-136V435c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8V528H592c-13.296 0-24 10.704-24 24v176c0 13.296 10.704 24 24 24h136v152c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V752h136c13.296 0 24-10.704 24-24V552c0-13.296-10.704-24-24-24zM728 680H640V600h88v80z m160 0h-88V600h88v80z"></path></svg>
  );
}