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

const Upload20: 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 20 20">
  <g clip-path="url(#a)">
    <path fill-rule="evenodd" d="M10.53 1.97a.75.75 0 0 0-1.06 0L6.136 5.303a.75.75 0 1 0 1.061 1.06L9.25 4.312v9.022a.75.75 0 0 0 1.5 0V4.311l2.053 2.053a.75.75 0 0 0 1.06-1.061L10.53 1.97Zm-3.702 9.942a.75.75 0 0 0-.323-1.464c-1.296.286-2.44.736-3.279 1.325-.826.58-1.476 1.389-1.476 2.394 0 .704.324 1.319.796 1.814.468.492 1.11.901 1.846 1.228C5.866 17.864 7.85 18.25 10 18.25c2.15 0 4.134-.386 5.608-1.04.736-.328 1.378-.737 1.846-1.229.472-.495.796-1.11.796-1.814 0-1.005-.65-1.813-1.476-2.393-.84-.59-1.983-1.04-3.279-1.326a.75.75 0 1 0-.323 1.464c1.173.26 2.113.649 2.74 1.089.64.45.838.862.838 1.166 0 .216-.096.479-.383.78-.29.306-.747.615-1.368.892-1.241.551-3.008.911-4.999.911-1.991 0-3.758-.36-4.999-.912-.621-.276-1.077-.585-1.368-.89-.288-.303-.383-.565-.383-.781 0-.304.198-.717.838-1.166.627-.44 1.567-.83 2.74-1.089Z"/>
  </g>
  <defs>
    <clipPath id="a">
      <rect width="20" height="20" fill="#fff"/>
    </clipPath>
  </defs>
</svg>
)
export default Upload20