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

const Cart64: 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="M6.5 13.334a1.5 1.5 0 0 1 1.5-1.5h5.333a1.5 1.5 0 0 1 1.443 1.087l1.974 6.913h36.583a1.5 1.5 0 0 1 1.393 2.057l-8 20a1.5 1.5 0 0 1-1.393.943h-24a1.5 1.5 0 0 1-1.442-1.088l-5.714-20-1.975-6.912H8a1.5 1.5 0 0 1-1.5-1.5Zm11.108 9.5 4.857 17h21.853l6.8-17h-33.51Zm7.725 28a1.833 1.833 0 1 0 0 3.666 1.833 1.833 0 0 0 0-3.666ZM20.5 52.666a4.833 4.833 0 1 1 9.667 0 4.833 4.833 0 0 1-9.667 0Zm19.667 0a1.833 1.833 0 1 1 3.666 0 1.833 1.833 0 0 1-3.666 0ZM42 47.833a4.833 4.833 0 1 0 0 9.667 4.833 4.833 0 0 0 0-9.666Z"/>
</svg>
)
export default Cart64