import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const ArrowBack20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M5.864 4.137a.75.75 0 0 1 0 1.06L3.81 7.25H14a.75.75 0 0 1 0 1.5H3.81l2.054 2.053a.75.75 0 0 1-1.061 1.061L1.47 8.531a.75.75 0 0 1 0-1.061l3.333-3.333a.75.75 0 0 1 1.06 0Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="16" height="16" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default ArrowBack20