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

const Pickup20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M2.835 2.663a.75.75 0 1 0-.67 1.341L5.23 5.537l3.056 8.405a2.417 2.417 0 1 0 3.92 1.794l2.63-.947a.75.75 0 0 0-.508-1.411l-2.645.952a2.412 2.412 0 0 0-1.991-.911L6.538 4.744a.75.75 0 0 0-.37-.415L2.836 2.663Zm6.957 12.254a.917.917 0 1 0 0 1.833.917.917 0 0 0 0-1.833Zm.118-7.455a.75.75 0 0 0-.448.961l1.425 3.916a.75.75 0 0 0 .961.448l3.915-1.425a.75.75 0 0 0 .449-.961l-1.425-3.916a.75.75 0 0 0-.962-.448L9.91 7.462Zm2.13 3.659-.912-2.506 2.506-.912.912 2.506-2.506.912Z"/>
</svg>
)
export default Pickup20