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

const Quantity48: 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="M23.271 4.689a1.5 1.5 0 0 1 1.457 0l18 10a1.5 1.5 0 0 1 0 2.622l-4.771 2.651 4.787 2.736a1.5 1.5 0 0 1-.016 2.613l-4.771 2.651 4.787 2.736a1.5 1.5 0 0 1-.016 2.613l-18 10a1.5 1.5 0 0 1-1.457 0l-18-10a1.5 1.5 0 0 1-.015-2.613l4.787-2.736-4.771-2.65a1.5 1.5 0 0 1-.016-2.614l4.787-2.736-4.771-2.65a1.5 1.5 0 0 1 0-2.623l18-10ZM13.11 29.665l-4.053 2.317L24 40.284l14.944-8.302-4.053-2.317-10.162 5.646a1.5 1.5 0 0 1-1.457 0l-10.163-5.646Zm11.62-2.354 10.162-5.646 4.053 2.317L24 32.284 9.056 23.982l4.053-2.317 10.162 5.646a1.5 1.5 0 0 0 1.457 0ZM9.088 16 24 24.284 38.911 16 24 7.716 9.089 16Z"/>
</svg>
)
export default Quantity48