import * as React from "react"; import { Switch } from "@headlessui/react"; import { cn } from "@/src/utils/tailwind"; export const Slider = (props: { disabled: boolean; // whether the slider is clickable in the UI loading?: boolean; onChecked?: (checked: boolean) => void; isChecked?: boolean; // whether the slider is active }) => ( Use setting );