import * as React from 'react';
const ArrowLeftIcon = (props: any) => (
  <svg
    xmlns='http://www.w3.org/2000/svg'
    width={19}
    height={16}
    fill='none'
    {...props}
  >
    <path
      fill='#2D2D2D'
      d='M18.685 8a.75.75 0 0 1-.75.75H3.245l5.47 5.47a.75.75 0 0 1-1.06 1.06L.905 8.53a.75.75 0 0 1 0-1.06L7.655.72a.75.75 0 0 1 1.06 1.06l-5.47 5.47h14.69a.75.75 0 0 1 .75.75Z'
    />
  </svg>
);
export default ArrowLeftIcon;
