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

const Download24: 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="M11.293 15.707a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L13 12.586V3a1 1 0 1 0-2 0v9.586l-2.293-2.293a1 1 0 1 0-1.414 1.414l4 4Zm-5.812-.33a1 1 0 0 0-.962-1.754C3.179 14.36 2 15.48 2 17c0 .878.404 1.639.983 2.246.573.603 1.356 1.1 2.247 1.496C7.014 21.535 9.408 22 12 22c2.592 0 4.986-.465 6.77-1.258.89-.396 1.674-.893 2.247-1.496.579-.607.983-1.368.983-2.246 0-1.521-1.18-2.64-2.519-3.377a1 1 0 1 0-.962 1.754C19.68 16.015 20 16.616 20 17c0 .227-.1.518-.432.868-.337.354-.872.719-1.61 1.047C16.484 19.569 14.378 20 12 20c-2.379 0-4.484-.43-5.958-1.085-.738-.328-1.273-.693-1.61-1.047C4.099 17.518 4 17.227 4 17c0-.384.32-.985 1.481-1.623Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="24" height="24" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Download24