export const InventoryIcon: React.FC<React.SVGAttributes<{}>> = (props) => (
  <svg
    xmlns="http://www.w3.org/2000/svg"
    width={20}
    height={20}
    fill="none"
    {...props}
  >
    <path
      fill="currentColor"
      d="M17.5 6.25 10 10.625 2.5 6.25 10 1.875l7.5 4.375Z"
      opacity={0.2}
    />
    <path
      fill="currentColor"
      d="M18.04 13.437a.625.625 0 0 1-.227.853l-7.5 4.375a.625.625 0 0 1-.63 0l-7.5-4.375a.625.625 0 0 1 .63-1.08L10 17.401l7.188-4.19a.625.625 0 0 1 .852.226Zm-.852-3.977L10 13.651l-7.188-4.19a.625.625 0 0 0-.624 1.079l7.5 4.375a.625.625 0 0 0 .63 0l7.5-4.375a.627.627 0 0 0 .068-1.043.626.626 0 0 0-.698-.037ZM1.874 6.25a.625.625 0 0 1 .313-.54l7.5-4.375a.625.625 0 0 1 .63 0l7.5 4.375a.625.625 0 0 1 0 1.08l-7.5 4.375a.625.625 0 0 1-.63 0l-7.5-4.375a.625.625 0 0 1-.313-.54Zm1.866 0L10 9.902l6.26-3.652L10 2.598 3.74 6.25Z"
    />
  </svg>
);
