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

const Upload32: FC<ADSIcon>  = 
    ({fill, size = '2rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  <path fill-rule="evenodd" d="M16.707 3.293a1 1 0 0 0-1.414 0L9.96 8.626a1 1 0 1 0 1.414 1.414L15 6.414v14.92a1 1 0 1 0 2 0V6.413l3.626 3.626a1 1 0 1 0 1.414-1.414l-5.333-5.333Zm-5.825 15.572a1 1 0 0 0-.431-1.953c-2.057.454-3.86 1.166-5.174 2.09C3.98 19.911 3 21.151 3 22.666c0 1.062.488 1.998 1.219 2.765.725.763 1.727 1.404 2.89 1.92C9.435 28.386 12.579 29 16 29c3.42 0 6.565-.614 8.891-1.648 1.163-.517 2.165-1.157 2.89-1.92.73-.767 1.219-1.703 1.219-2.765 0-1.515-.98-2.755-2.277-3.666-1.314-.923-3.117-1.635-5.174-2.09a1 1 0 1 0-.431 1.953c1.894.419 3.425 1.05 4.456 1.774 1.048.736 1.426 1.45 1.426 2.029 0 .411-.183.878-.667 1.387-.49.514-1.244 1.022-2.254 1.47C22.063 26.42 19.207 27 16 27c-3.207 0-6.063-.58-8.08-1.476-1.009-.448-1.764-.957-2.253-1.47-.484-.51-.667-.976-.667-1.387 0-.58.378-1.293 1.426-2.03 1.031-.724 2.562-1.354 4.456-1.773Z"/>
</svg>
)
export default Upload32