import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M636.032 483.2v396.84c0 22-18.224 39.96-40.528 39.96H433.392c-22.312 0-40.528-17.96-40.528-39.96V483.2H214.016c-22.304 0-40.528-17.784-40.528-39.96 0-10.632 4.28-20.896 11.904-28.408L488.976 115.68c15.8-15.584 41.456-15.584 57.264 0l303.4 299.328a39.544 39.544 0 0 1 0 56.456 41.104 41.104 0 0 1-28.816 11.728h-184.8z"></path>
</svg>

  );
}