import React from "react"; type ImageFormatSelectProps = { batchMode: boolean; saveImageAs: string; setExportType: (arg: string) => void; }; export function ImageFormatSelect({ batchMode, saveImageAs, setExportType, }: ImageFormatSelectProps) { return (

SAVE IMAGE AS

EXPERIMENTAL

{batchMode && (

Only PNG is supported in Batch Upscayl.

)}
{/* PNG */} {/* JPG */} {/* WEBP */}
); }