import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M632.048 540.8V143.96A40.056 40.056 0 0 0 592.08 104h-159.84a40.056 40.056 0 0 0-39.952 39.96V540.8H215.96A39.936 39.936 0 0 0 176 580.76a40.24 40.24 0 0 0 11.728 28.408l299.328 299.144a39.936 39.936 0 0 0 56.456 0l299.144-299.328a39.936 39.936 0 0 0 0-56.456 40.24 40.24 0 0 0-28.408-11.728H632.048z"></path>
</svg>

  );
}