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

const Download64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M30.94 41.06a1.5 1.5 0 0 0 2.12 0l10.667-10.666a1.5 1.5 0 1 0-2.121-2.121L33.5 36.379V8a1.5 1.5 0 0 0-3 0v28.379l-8.106-8.106a1.5 1.5 0 1 0-2.121 2.121l10.666 10.667Zm-16.885-1.079a1.5 1.5 0 1 0-1.444-2.63C9.143 39.258 6.5 41.942 6.5 45.334c0 1.961.9 3.716 2.3 5.186 1.391 1.463 3.334 2.711 5.62 3.727C18.996 56.28 25.213 57.5 32 57.5c6.787 0 13.004-1.22 17.58-3.254 2.286-1.016 4.229-2.264 5.62-3.727 1.4-1.47 2.3-3.225 2.3-5.186 0-3.393-2.643-6.076-6.111-7.981a1.5 1.5 0 1 0-1.444 2.63c3.202 1.758 4.555 3.664 4.555 5.351 0 .985-.443 2.036-1.473 3.118-1.037 1.09-2.609 2.14-4.666 3.054C44.251 53.332 38.468 54.5 32 54.5s-12.251-1.168-16.361-2.995c-2.057-.914-3.63-1.964-4.666-3.054C9.943 47.37 9.5 46.318 9.5 45.333c0-1.687 1.353-3.593 4.555-5.352Z"/>
</svg>
)
export default Download64