1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-04 11:57:56 +01:00
upscayl/renderer/components/upscayl-tab/view/RightPaneInfo.tsx
2023-08-14 16:25:30 +05:30

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 Upscayl
</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;