export const TaxesIcon: React.FC<React.SVGAttributes<{}>> = (props) => (
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" {...props}>
    <path
      fill="currentColor"
      d="M7.484 4.39a2.187 2.187 0 1 1-3.093 3.094 2.187 2.187 0 0 1 3.093-3.093Zm8.125 8.126a2.188 2.188 0 1 0-3.093 3.094 2.188 2.188 0 0 0 3.093-3.094Z"
      opacity={0.2}
    />
    <path
      fill="currentColor"
      d="m16.067 4.816-11.25 11.25a.625.625 0 1 1-.884-.885l11.25-11.25a.625.625 0 1 1 .884.884ZM3.948 7.925a2.813 2.813 0 1 1 3.978-3.977 2.813 2.813 0 0 1-3.978 3.977Zm.427-1.988A1.562 1.562 0 1 0 7.5 5.935a1.562 1.562 0 0 0-3.125.002Zm12.5 8.125a2.812 2.812 0 1 1-5.625 0 2.812 2.812 0 0 1 5.625 0Zm-1.25 0a1.562 1.562 0 1 0-3.124 0 1.562 1.562 0 0 0 3.124 0Z"
    />
  </svg>
);
