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

const ArrowTopLeft20: 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="M2.47 2.47A.75.75 0 0 1 3 2.25h7a.75.75 0 0 1 0 1.5H4.81l8.72 8.72a.75.75 0 1 1-1.06 1.06L3.75 4.81V10a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .22-.53Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="16" height="16" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default ArrowTopLeft20