mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-13 18:30:54 +01:00
21 lines
529 B
TypeScript
21 lines
529 B
TypeScript
import React from "react";
|
|
|
|
function RightPaneInfo({ version, batchMode }) {
|
|
return (
|
|
<>
|
|
<p className="p-5 pb-1 text-lg font-semibold">
|
|
Select {batchMode ? "a Folder" : "an Image"} to Upscale
|
|
</p>
|
|
{batchMode && (
|
|
<p className="w-full pb-5 text-center md:w-96">
|
|
Make sure that the folder doesn't contain anything except PNG, JPG,
|
|
JPEG & WEBP images.
|
|
</p>
|
|
)}
|
|
<p className="text-sm">Upscayl v{version}</p>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default RightPaneInfo;
|