export const WithdrawIcon: React.FC<React.SVGAttributes<{}>> = (props) => (
  <svg xmlns="http://www.w3.org/2000/svg" fill="none" {...props}>
    <path
      fill="currentColor"
      d="M17.5 4.375V16.25L15 15l-2.5 1.25L10 15l-2.5 1.25L5 15l-2.5 1.25V4.375a.625.625 0 0 1 .625-.625h13.75a.625.625 0 0 1 .625.625Z"
      opacity={0.2}
    />
    <path
      fill="currentColor"
      d="M5.625 8.125A.625.625 0 0 1 6.25 7.5h7.5a.625.625 0 1 1 0 1.25h-7.5a.625.625 0 0 1-.625-.625Zm.625 3.125h7.5a.624.624 0 1 0 0-1.25h-7.5a.625.625 0 1 0 0 1.25Zm11.875-6.875V16.25a.625.625 0 0 1-.905.559L15 15.699l-2.22 1.11a.626.626 0 0 1-.56 0L10 15.699l-2.22 1.11a.626.626 0 0 1-.56 0L5 15.699l-2.22 1.11a.624.624 0 0 1-.905-.559V4.375a1.25 1.25 0 0 1 1.25-1.25h13.75a1.25 1.25 0 0 1 1.25 1.25Zm-1.25 0H3.125v10.864l1.595-.798a.626.626 0 0 1 .56 0l2.22 1.11 2.22-1.11a.626.626 0 0 1 .56 0l2.22 1.11 2.22-1.11a.626.626 0 0 1 .56 0l1.595.798V4.375Z"
    />
  </svg>
);
