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

const ArrowBottomLeft48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M39.06 8.94a1.5 1.5 0 0 1 0 2.12L13.622 36.5H30a1.5 1.5 0 0 1 0 3H10A1.5 1.5 0 0 1 8.5 38V18a1.5 1.5 0 0 1 3 0v16.379l25.44-25.44a1.5 1.5 0 0 1 2.12 0Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="48" height="48" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default ArrowBottomLeft48