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

const Download48: FC<ADSIcon>  = 
    ({fill, size = '3rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
  <path fill-rule="evenodd" d="M22.94 31.06a1.5 1.5 0 0 0 2.12 0l8-8a1.5 1.5 0 0 0-2.12-2.12l-5.44 5.439V6a1.5 1.5 0 0 0-3 0v20.379l-5.44-5.44a1.5 1.5 0 0 0-2.12 2.122l8 8Zm-12.218-.745a1.5 1.5 0 1 0-1.444-2.63C6.643 29.132 4.5 31.242 4.5 34c0 1.593.732 2.997 1.828 4.148 1.088 1.143 2.592 2.105 4.335 2.88C14.153 42.578 18.87 43.5 24 43.5c5.13 0 9.847-.921 13.337-2.472 1.743-.775 3.247-1.737 4.335-2.88C42.768 36.997 43.5 35.593 43.5 34c0-2.758-2.143-4.868-4.778-6.315a1.5 1.5 0 1 0-1.444 2.63c2.368 1.3 3.222 2.633 3.222 3.685 0 .616-.275 1.317-1.001 2.08-.734.77-1.866 1.533-3.38 2.206C33.094 39.63 28.81 40.5 24 40.5s-9.094-.87-12.119-2.214c-1.514-.673-2.646-1.435-3.38-2.206C7.775 35.317 7.5 34.616 7.5 34c0-1.052.854-2.384 3.222-3.685Z"/>
</svg>
)
export default Download48