import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M32 75.28V363.2C32 383.52 48.48 400 68.8 400c20.32 0 36.8-16.48 36.8-36.8V155.424l233.976 234.048a35.312 35.312 0 0 0 49.896 0 35.312 35.312 0 0 0 0-49.896L155.424 105.6H363.2c20.32 0 36.8-16.48 36.8-36.8C400 48.48 383.52 32 363.2 32H75.28C48.416 32 32 45.84 32 75.28zM948.72 32H660.8C640.48 32 624 48.48 624 68.8c0 20.32 16.48 36.8 36.8 36.8h207.776L634.528 339.576a35.312 35.312 0 0 0 0 49.896 35.312 35.312 0 0 0 49.896 0L918.4 155.424V363.2c0 20.32 16.48 36.8 36.8 36.8 20.32 0 36.8-16.48 36.8-36.8V75.28c0-29.44-16.336-43.28-43.28-43.28zM75.28 992H363.2c20.32 0 36.8-16.48 36.8-36.8 0-20.32-16.48-36.8-36.8-36.8H155.424l234.048-233.976a35.312 35.312 0 0 0 0-49.896 35.312 35.312 0 0 0-49.896 0L105.6 868.576V660.8c0-20.32-16.48-36.8-36.8-36.8C48.48 624 32 640.48 32 660.8v287.92c0 29.44 16.416 43.28 43.28 43.28zM992 948.72V660.8c0-20.32-16.48-36.8-36.8-36.8-20.32 0-36.8 16.48-36.8 36.8v207.776L684.424 634.528a35.312 35.312 0 0 0-49.896 0 35.312 35.312 0 0 0 0 49.896l234.048 233.976H660.8c-20.32 0-36.8 16.48-36.8 36.8 0 20.32 16.48 36.8 36.8 36.8h287.92c26.944 0 43.28-13.84 43.28-43.28z"></path></svg>
  );
}