34 lines
621 B
TypeScript
34 lines
621 B
TypeScript
import type { MattrixwvSwitchProps } from "$/types/InputTypes";
|
|
import clsx from "clsx";
|
|
import MattrixwvSwitch from "./MattrixwvSwitch";
|
|
|
|
|
|
export default function InfoSwitch({
|
|
className,
|
|
knobClassName,
|
|
disabled,
|
|
...props
|
|
}: Readonly<MattrixwvSwitchProps>){
|
|
return (
|
|
<MattrixwvSwitch
|
|
className={clsx(
|
|
"bg-gray-400",
|
|
className,
|
|
{
|
|
"data-checked:bg-info": !disabled,
|
|
"data-checked:bg-info-light/80": disabled
|
|
}
|
|
)}
|
|
knobClassName={clsx(
|
|
knobClassName,
|
|
{
|
|
"bg-white": !disabled,
|
|
"bg-neutral-light": disabled
|
|
}
|
|
)}
|
|
disabled={disabled}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|