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

const Download20: 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 24 24">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M11.47 15.53a.75.75 0 0 0 1.06 0l4-4a.75.75 0 1 0-1.06-1.06l-2.72 2.72V3a.75.75 0 0 0-1.5 0v10.19l-2.72-2.72a.75.75 0 0 0-1.06 1.06l4 4Zm-6.109-.373a.75.75 0 0 0-.722-1.314C3.322 14.566 2.25 15.62 2.25 17c0 .796.366 1.498.914 2.074.544.572 1.296 1.052 2.167 1.44 1.746.775 4.104 1.236 6.669 1.236 2.565 0 4.923-.46 6.669-1.236.871-.388 1.623-.868 2.167-1.44.548-.576.914-1.278.914-2.074 0-1.38-1.072-2.434-2.389-3.157a.75.75 0 0 0-.722 1.314c1.184.65 1.611 1.317 1.611 1.843 0 .308-.137.658-.5 1.04-.367.385-.934.767-1.69 1.103-1.513.672-3.654 1.107-6.06 1.107-2.405 0-4.547-.435-6.06-1.107-.756-.336-1.323-.718-1.69-1.103-.363-.382-.5-.732-.5-1.04 0-.526.427-1.192 1.611-1.843Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="24" height="24" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Download20