import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M729.872 511.992a53.4 53.4 0 0 0-15.664-37.848L385.504 145.448a53.544 53.544 0 0 0-75.704 75.704L600.648 512l-290.84 290.832a53.544 53.544 0 0 0 75.704 75.704L714.216 549.84a53.392 53.392 0 0 0 15.656-37.848z"></path>
</svg>

  );
}