1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-11 15:26:13 +01:00
upscayl/renderer/components/settings-tab/ImageScaleSelect.tsx

41 lines
1.0 KiB
TypeScript
Raw Normal View History

2023-07-22 13:07:53 +02:00
import React from "react";
type ImageScaleSelectProps = {
scale: "4" | "2" | "3";
setScale: (arg: "4" | "2" | "3") => void;
};
export function ImageScaleSelect({ scale, setScale }: ImageScaleSelectProps) {
return (
<div>
<div className="flex flex-row gap-1">
<p className="text-sm font-medium">IMAGE SCALE</p>
<a
href="https://github.com/upscayl/upscayl/wiki/Guide#scale-option"
target="_blank">
<p className="badge-primary badge text-[10px] font-medium">
EXPERIMENTAL
</p>
</a>
</div>
<input
type="range"
2023-07-23 08:32:22 +02:00
min="1"
2023-07-22 13:07:53 +02:00
max="4"
value={scale}
onChange={(e: any) => {
setScale(e.target.value.toString());
}}
step="1"
className="range range-primary mt-2"
/>
<div className="flex w-full justify-between px-2 text-xs font-semibold text-base-content">
2023-07-23 08:32:22 +02:00
<span>1x</span>
2023-07-22 13:07:53 +02:00
<span>2x</span>
<span>3x</span>
<span>4x</span>
</div>
</div>
);
}