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

const Download32: 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="M15.293 20.707a1 1 0 0 0 1.414 0l5.333-5.333a1 1 0 1 0-1.414-1.414L17 17.586V4a1 1 0 1 0-2 0v13.586l-3.626-3.626a1 1 0 1 0-1.414 1.414l5.333 5.333Zm-8.145-.497a1 1 0 1 0-.963-1.753C4.43 19.422 3 20.827 3 22.667c0 1.061.488 1.998 1.219 2.765.725.762 1.727 1.403 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.158 2.89-1.92.73-.767 1.219-1.704 1.219-2.765 0-1.84-1.429-3.245-3.185-4.21a1 1 0 0 0-.963 1.753C26.43 21.077 27 21.965 27 22.667c0 .41-.183.877-.667 1.386-.49.514-1.244 1.022-2.254 1.471C22.063 26.42 19.207 27 16 27c-3.207 0-6.063-.58-8.08-1.476-1.009-.449-1.764-.957-2.253-1.47-.484-.51-.667-.976-.667-1.387 0-.702.57-1.59 2.148-2.457Z"/>
</svg>
)
export default Download32