import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M512 294.112a53.4 53.4 0 0 0-37.84 15.672L145.448 638.48a53.544 53.544 0 0 0 75.704 75.704L512 423.344l290.84 290.84a53.544 53.544 0 0 0 75.704-75.704L549.84 309.776A53.392 53.392 0 0 0 512 294.112z"></path>
</svg>

  );
}