import * as React from 'react';
const ArrowRightIcon = (props: any) => (
  <svg
    xmlns='http://www.w3.org/2000/svg'
    width={19}
    height={16}
    fill='none'
    {...props}
  >
    <path
      fill='#2D2D2D'
      d='M.315 8a.75.75 0 0 0 .75.75h14.69l-5.47 5.47a.751.751 0 0 0 1.06 1.06l6.75-6.75a.752.752 0 0 0 0-1.06L11.346.72a.75.75 0 0 0-1.06 1.06l5.47 5.47H1.065a.75.75 0 0 0-.75.75Z'
    />
  </svg>
);
export default ArrowRightIcon;
