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

const ChevronLeft20: 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 20 20">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M12.614 5.303a.75.75 0 0 1 0 1.06L8.977 10l3.637 3.636a.75.75 0 0 1-1.061 1.061l-4.167-4.166a.75.75 0 0 1 0-1.061l4.167-4.167a.75.75 0 0 1 1.06 0Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="20" height="20" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default ChevronLeft20