import type { MattrixwvSwitchProps } from "$/types/InputTypes"; import clsx from "clsx"; import { forwardRef } from "react"; import MattrixwvSwitch from "./MattrixwvSwitch"; const LightSwitch = forwardRef(({ className, knobClassName, disabled, ...props }, ref ) => { return ( ); }); LightSwitch.displayName = "LightSwitch"; export default LightSwitch;