import { useCustomWidthAtom } from "@/atoms/userSettingsAtom"; import { useAtom } from "jotai"; import React from "react"; type ImageScaleSelectProps = { scale: "4" | "2" | "3"; setScale: (arg: "4" | "2" | "3") => void; }; export function ImageScaleSelect({ scale, setScale }: ImageScaleSelectProps) { const [useCustomWidth, setUseCustomWidth] = useAtom(useCustomWidthAtom); return (

IMAGE SCALE {useCustomWidth && "DISABLED"}

{/*

EXPERIMENTAL

*/}
{ setScale(e.target.value.toString()); }} step="1" className="range range-primary mt-2" />
1x 2x 3x 4x
); }