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

const Quantity32: FC<ADSIcon>  = 
    ({fill, size = '2rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
  <path fill-rule="evenodd" d="M15.514 3.126a1 1 0 0 1 .972 0l12 6.667a1 1 0 0 1 0 1.748l-3.181 1.767 3.191 1.824a1 1 0 0 1-.01 1.742l-3.181 1.767 3.191 1.824a1 1 0 0 1-.01 1.742l-12 6.667a1 1 0 0 1-.972 0l-12-6.666a1 1 0 0 1-.01-1.743l3.191-1.824-3.18-1.767a1 1 0 0 1-.011-1.742l3.191-1.824-3.18-1.767a1 1 0 0 1 0-1.748l12-6.667ZM8.74 19.776l-2.702 1.545L16 26.856l9.963-5.535-2.702-1.544-6.775 3.764a1 1 0 0 1-.972 0L8.74 19.777Zm7.747-1.569 6.775-3.763 2.702 1.544L16 21.523l-9.963-5.535 2.702-1.544 6.775 3.763a1 1 0 0 0 .972 0ZM6.06 10.667 16 16.189l9.94-5.522L16 5.144l-9.94 5.523Z"/>
</svg>
)
export default Quantity32