import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M860 472a36 36 0 1 1 72 0v344c0 64.064-51.936 116-116 116H208c-64.064 0-116-51.936-116-116V208c0-64.064 51.936-116 116-116h344a36 36 0 1 1 0 72H208a44 44 0 0 0-44 44v608a44 44 0 0 0 44 44h608a44 44 0 0 0 44-44V472z m40.464-350.544a36 36 0 0 1 0 50.912L421.872 650.96a36 36 0 0 1-50.912-50.912l478.592-478.592a36 36 0 0 1 50.912 0z"></path></svg>
  );
}