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

const ArrowBottomLeft24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M19.707 4.293a1 1 0 0 1 0 1.414L7.414 18H15a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1V9a1 1 0 1 1 2 0v7.586L18.293 4.293a1 1 0 0 1 1.414 0Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="24" height="24" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default ArrowBottomLeft24