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

const Upload48: 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="M25.06 4.94a1.5 1.5 0 0 0-2.12 0l-8 8a1.5 1.5 0 0 0 2.12 2.12l5.44-5.439V32a1.5 1.5 0 0 0 3 0V9.621l5.44 5.44a1.5 1.5 0 0 0 2.12-2.122l-8-8Zm-8.736 23.357a1.5 1.5 0 1 0-.648-2.93c-3.085.682-5.789 1.75-7.76 3.135C5.97 29.868 4.5 31.728 4.5 34c0 1.592.732 2.996 1.828 4.148 1.088 1.143 2.592 2.104 4.335 2.879C14.153 42.578 18.87 43.5 24 43.5c5.13 0 9.847-.922 13.337-2.473 1.743-.775 3.247-1.736 4.335-2.88C42.768 36.998 43.5 35.593 43.5 34c0-2.272-1.47-4.132-3.415-5.498-1.972-1.386-4.676-2.453-7.761-3.135a1.5 1.5 0 0 0-.647 2.93c2.84.627 5.137 1.573 6.683 2.66 1.573 1.105 2.14 2.175 2.14 3.044 0 .616-.275 1.316-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.436-3.38-2.207C7.775 35.317 7.5 34.617 7.5 34c0-.868.567-1.938 2.14-3.043 1.546-1.087 3.842-2.033 6.683-2.66Z"/>
</svg>
)
export default Upload48